Print all Aliases Active in Current Shell
Today I Learned that alias
command when used without any args prints all aliases set in the current shell.
Usually I alias
command to create a new alias. For example, alias gst=’git status’
.
My colleague pointed out the similar behaviour of env
and set
commands.