up vote 16 down vote favorite
4
share [g+] share [fb]

I need to echo a string containing angle brackets (< and >) to a file on a Windows machine. Basically what I want to do is the following:
echo some string < with angle > brackets >>myfile.txt

This doesn't work since the command interpreter gets confused with the angle brackets. I could quote the whole string like this:
echo "some string < with angle > brackets" >>myfile.txt

But then I have double quotes in my file that I don't want.

Escaping the brackets ala unix doesn't work either:
echo some string \< with angle \> brackets >>myfile.txt

Ideas?

link|improve this question

14% accept rate
what is wrong with quotes? – Oskar Oct 30 '08 at 20:10
The quotes will also be echoed. – dalle Oct 30 '08 at 20:12
feedback

3 Answers

up vote 29 down vote accepted

The Windows escape character is ^, for some reason.

echo some string ^< with angle ^> brackets >>myfile.txt
link|improve this answer
3  
Well, backslash is used for pathnames and double-quote is to wrap filename which have spaces, so there not many character choices left. – James Curran Oct 30 '08 at 20:27
This also works for other characters like ampersand (&), thanks. – tenfour Feb 23 '11 at 17:20
Works great! echo some string ^< with angle ^> brackets >>con results in: some string < with angle > brackets – Ross Bradbury Jun 16 '11 at 14:33
feedback

Escaping the brackets ala unix doesn't work either:

echo some string \< with angle \> brackets >>myfile.txt

The backslash would be considered the start of a absolute pathname.

link|improve this answer
2  
Absolute pathname relative to the current drive letter... ;) – dalle Oct 31 '08 at 8:54
feedback

You can also use double quotes to escape special characters...

echo some string "<" with angle ">" brackets >>myfile.txt
link|improve this answer
That does not work. echo some string "<" with angle ">" brackets >>con results in: some string "<" with angle ">" brackets but the OP wants some string < with angle > brackets – Ross Bradbury Jun 16 '11 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.