how to make permanent alias in linux code example
Example 1: how to add alias in linux
alias l="ls -al"
Example 2: linux permanent alias
printf "%s\n" "alias shh='sqlplus hfdora/hfdora@hfd1" >> ~/.bashrc
source ~/.bashrc # for immediate effect
#or add your alias to ~/.bashrc directly