Category Archives: Bash

Bash Shell Operator Tips

Removing Aliases

Use unalias to remove an alias. Give unalias as a command using the alias to remove as an argument. The alias will be removed for the rest of the shell session. One can also re-alias in the same shell as … Continue reading

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment

Listing Your Shell Aliases

One can list aliases in the current shell by simply runing alias without any arguments. Example… List aliases in the current shell… $ alias <Enter>

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment

Setting An Alias

alias is the utility to assign an alias for a command. Follow alias with the name of the alias, the equal sign (=) and a quoted string the alias will reference. Example… Use “bye” as an alias for exit… $ … Continue reading

Posted in BSD, Bash, GNU/Linux, UNIX | Tagged , , , , | Leave a comment