Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: stonysmithThe \ character is used in linux as an "escape character". In your example, "\"" - you're saying that you want a double-quote character.
Michelle and Gerry both have it right.. you want "\\" - to give you the slash itself.
There are some other popular escape sequences:
\n - newline
\r - carriage return
\" - double quote
\\ - slash
A couple of side notes:
1) Many times, windows will accept the / in file names
2) While we're on the subject, there are certain cases in which you need to send a slash out to linux as a parameter. In such a case you have to use an escaped escape, or "\\\\"