8 lines
131 B
Bash
Executable File
8 lines
131 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# scripts/manual/vpn-open.sh
|
|
|
|
here=$(pwd)
|
|
cd /home/brad/cyberghost
|
|
sudo openvpn --config openvpn.ovpn
|
|
cd $here
|