//View Tip #871
» rc-service alias
» ssh proxy forwarding
» iso2cd
» List non-system users
MJB
Similar Tips
» Counts files in the current directory and subdirectory» rc-service alias
» ssh proxy forwarding
» iso2cd
» List non-system users
Latest tips by RSS
Click here to subscribe
Follow Shell-Fu on Twitter
Click here to follow
Follow Shell-Fu on identi.ca
Click here to follow
A '\' mark before a command will ignore aliases. For example, you have alias
and want use ls without that --color option
$ \ls
alias ls='ls --color=auto'
and want use ls without that --color option
$ \ls
Comments
Add your comment
Comments are currently disabled
#1
Brilliant, thanks. You don't know how many times I've typed `grep --color=none` to overwrite my colored alias when redirecting output to a file or piping to another command.
Posted 2009-08-18 15:32:43
Commands in single quotes do the same thing. For example, 'cp' will copy without asking for confirmation if aliased to "cp -i".
Posted 2010-04-30 11:56:14

