diff --git a/connect.sh b/connect.sh index 2a722fb..0d79b5e 100644 --- a/connect.sh +++ b/connect.sh @@ -1,6 +1,6 @@ #!/bin/bash # OPENVPN OTG CONNECT SCRIPT echo "Where is the .ovpn config file?: (/path/to/file.ovpn)" -read $fileloc -sudo screen -dmS ovpn openvpn --client $fileloc +read fileloc +sudo screen -dmS ovpn openvpn --config $fileloc echo "Done, you should be connected, to end the connection, screen -x ovpn and ctrl+c"