local-bin/bin/vpn
2020-11-10 01:04:20 +02:00

13 lines
213 B
Bash
Executable File

#!/bin/sh
if [ "$1" == "on" ]; then
cmd="c --p2p"
elif [ "$1" == "off" ]; then
cmd="d"
elif [ "$1" == "status" ]; then
cmd="s"
else
echo "Please pass an argument: on, off, status"
exit
fi
doas protonvpn $cmd