The backslash ( \ ) escape character
\as shdd
ashish#: echo "Well, isn't that \"special\"?"
Well, isn't that "special"?
ashish#: echo "Well, isn't that \special\?"
Well, isn't that \special\?
ashish#: echo "Well, isn't that \$special\$?"
Well, isn't that $special$?
ashish#: echo "Well, isn't that \$ special \$?"
Well, isn't that $ special $?
ashish#: echo "Well, isn't that \#special\#?"
Well, isn't that \#special\#?
ashish#: echo "Well, isn't that \'special\'?"
Well, isn't that \'special\'?
ashish#: echo "Well, isn't that \' special \'?"
Well, isn't that \' special \'?
ashish#: echo "Well, isn't that \\' special \'?"
Well, isn't that \' special \'?
ashish#: echo "Well, isn't that \\\' special \'?"
Well, isn't that \\' special \'?
ashish#: echo "Well, isn't that \\\'\\ special \'?"
Well, isn't that \\'\ special \’?
rm * # delete all files in the current directory
rm \* # delete the file named *
Comments
Post a Comment