mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-27 07:44:56 +08:00
Former-commit-id: 46c2bf7d26
Former-commit-id: ec0b4e689f3f8e97d837848929a1a6a9e45f779b
Former-commit-id: 19f055447f5fd666a270a51cf98b05d70716e826
14 lines
248 B
Bash
Executable file
14 lines
248 B
Bash
Executable file
# Replace with your own interface name here
|
|
VPN_IF="tap"
|
|
VPN="$(ifconfig -a | grep $VPN_IF)"
|
|
|
|
if [ ${#VPN} -eq "0" ]; then
|
|
#echo "vpn off"
|
|
# echo "VPN N"
|
|
# echo "vpn "
|
|
echo "vpn "
|
|
else
|
|
# echo "vpn "
|
|
echo "vpn "
|
|
# echo "VPN Y"
|
|
fi
|