DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
How To Create An Alias In Unix Systems
// go to our home path, edit the '.profile' file and append the next line
alias ll='ls -ltr'






Comments
Akhil Reddy replied on Thu, 2012/08/09 - 7:50am
Some usefule alias commands are
For finding hidden files alias la='ls -a' For listing processes alias p='ps -aef'kill command in unix
Akhil Reddy replied on Thu, 2012/08/09 - 7:51am