Often see the author of the Linux software in the introduction of the installation software, in front of the command with a backslash, do not understand the meaning of the data later to know that this is to cancel the call of the alias, using the original command.
Alias is a shell built-in command that can be used to set the alias of a command, such as using the alias ls= ' LS--color=auto ' to set the color output when using LS
Precede the command with a backslash to temporarily deactivate the alias
Example: \ls
The original command of the LS is called directly, and the command with the color option set by alias is not used
The same thing, often appearing on the introduction of installation software, the author to ensure that you use the command and his use of the same, rather than the various system aliases, often in front of the command with a backslash to remove the alias.
For example: perlbrew.pl website, the following command was used when introducing the installation Perlbrew:
\wget-o-https://install.perlbrew.pl | bash
This is to ensure that the wget you use is consistent with the wget used by the author, not the aliases of the other commands.
The original command that uses a backslash "\" to invoke an alias under the Linux command line