An alias is a shortcut definition of one or more commands. The syntax for an alias is:
aliasNAME=DEFINITION
For example, the following line defines an alias lt
which outputs a long listing (option -l), sorts it by
modification time (-t) and prints it in reverse order
while sorting (-r):
alias lt='ls -ltr'
To view all alias definitions, use alias. Remove your alias with unalias.