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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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