10 lines
119 B
Bash
10 lines
119 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Use nmcli to display the VPN status
|
||
|
#
|
||
|
if ip link | grep -q tun; then
|
||
|
echo ""
|
||
|
else
|
||
|
echo ""
|
||
|
fi
|