Last active
December 12, 2019 15:25
-
-
Save mmehdinasiri/d00345f40dfbb108d04afa7ba50ebd7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
save the output of a command to a file: | |
SomeCommand > SomeFile.txt | |
SomeCommand >> SomeFile.txt (append) | |
//opne openvpn | |
sudo openvpn --config /etc/openvpn/vpnbook-udp-53.ovpn --auth-user-pass /etc/openvpn/password.txt | |
// make alise in .bashrc | |
alias vpn='openvpn --config /home/mehdi/MySystemFile/USA_UDP.ovpn' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment