Difference between revisions of "Alias"

From Linuxintro
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...")
(No difference)

Revision as of 03:44, 23 January 2012

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