Full Contact Computing
Bare knuckles, no holds barred computing

Posts Tagged ‘bash_aliases

The Unix and Linux Alias Command

March 19, 2010

An alias is a short command that replaces a longer command to save typing. For example:  alias junk=’more junk.txt’   will allow you to type    junk     alone and it will do a ‘more’ command on the file junk.txt. Now, this is a simple example and doesn’t really do much, but it can be much more sophisticated: […]