Alias
From Linuxintro
Revision as of 03:44, 23 January 2012 by imported>ThorstenStaerk (Created page with "An alias is a string that stands for a command. For example you can define "greet" to be an alias for "echo 'hello world'" like this: # alias greet="echo 'hello world'" # greet...")
An alias is a string that stands for a command. For example you can define "greet" to be an alias for "echo 'hello world'" like this:
# alias greet="echo 'hello world'" # greet hello world