Bash - Display all Aliases Defined in Shell
06/04/2022, Sat
Categories:
#Shell
Check on Aliases Defined in .bashrc
If you so happen to have many alias commands in your .bashrc file and want to be reminded of them, you can list them out using the following
alias
The output will be a list of aliases in alphabetical order.
# Example
alias gst='git status'
alias lsla='ls -la'