Answers for "shell aliases"

1

bash alias

# open .bashrc to add your alias
nano ~/.bashrc
# add your alias
alias alias_name="command_to_run"
# activate the alias for the session
source ~/.bashrc
Posted by: Guest on November-04-2021
0

Create a short command in bash using alias

alias htblab='sudo openvpn ~/Documents/noobsecdotnet.ovpn'
Posted by: Guest on September-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language