Lifestyle
 

Howto add remove or view an alias in unix

From Wikihowto



Aliases of commands are used to make life easier by shortening commands the user uses often, and becomes tedious to type the entire command

[edit] Steps

to create an alias

  • for csh,tcsh: alias ls ls -a
  • for ksh: alias -x ls="ls -a"
  • for ksh: alias ls="ls -a"

to view an alias

  • execute: alias Alias_Name

to remove an alias

  • execute: unalias Alias_Name

to make an alias permanent put in your shells startup script ie. ~/.bashrc ~/.bash_profile ~/.profile

See: Howto configure bash startup scripts

[edit] Examples