export alias code example
Example 1: 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
Example 2: bash profile alias
#In .bash_profile on MAC, not sure if this works for linux
#Terminal Command Aliases
alias e=exit
alias c=clear
alias r=reset
#Software Aliases
alias jn=jupyter-notebook
alias python=python3.7