Shell/Bash: set alias in ubuntu Example
Shell/Bash Example: This is the "set alias in ubuntu" Example. compiled from many sources on the internet by SimpleTutorials.org
set alias in ubuntu
# open terminal Ctrl+Alt+T # open ~/.bashrc_alias by running gedit ~/.bashrc_alias # the file opened might be empty # add you aliases and commands one alias in a line alias name_of_alias="command you want to execute" alias name_of_another_alias="another command you want to execute" # save Ctrl+S # for immediate effect run in terminal source ~/.bashrc_alias
how to add alias in linux
alias l="ls -al"
linux permanent alias
printf "%s\n" "alias shh='sqlplus hfdora/[email protected]" >> ~/.bashrc source ~/.bashrc # for immediate effect #or add your alias to ~/.bashrc directly
linux add alias
# syntax # alias *="* " # example alias ll="ls -lrt"
* Summary: This "set alias in ubuntu" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!