Bash View Current Alias from the command line
To view the current alias from the command line, do the following:
Given an alias ll
alias ll='ls -al'
Type alias ll on the command line to view its current alias:
$ alias ll
>>> alias ll='ls -al'
To view the current alias from the command line, do the following:
Given an alias ll
alias ll='ls -al'
Type alias ll on the command line to view its current alias:
$ alias ll
>>> alias ll='ls -al'
Comments
Leave a Reply