<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to insert a carriage return with batch</title>
	<atom:link href="http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/</link>
	<description>Here&#039;s 2 cents, don&#039;t spend it all at once</description>
	<lastBuildDate>Wed, 10 Sep 2008 22:52:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Adam</title>
		<link>http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-8</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 02 May 2008 22:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.dearmisterjones.com/index.php/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-8</guid>
		<description>Why did it take me so long to find this???  I have been for an hour trying to find out how to perform a carriage return in DOS using the &quot;echo&quot; command.  I have tried
echo &quot;Hello\nWorld&quot;
and using the -e and \n and \\n but DOS always interprets it literally.  If anyone can help, please let me know.  This worked to create a new line for me, thanks.</description>
		<content:encoded><![CDATA[<p>Why did it take me so long to find this???  I have been for an hour trying to find out how to perform a carriage return in DOS using the &#8220;echo&#8221; command.  I have tried<br />
echo &#8220;Hello\nWorld&#8221;<br />
and using the -e and \n and \\n but DOS always interprets it literally.  If anyone can help, please let me know.  This worked to create a new line for me, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mister jones</title>
		<link>http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-7</link>
		<dc:creator>mister jones</dc:creator>
		<pubDate>Sat, 05 Apr 2008 12:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dearmisterjones.com/index.php/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-7</guid>
		<description>Matias: You&#039;re welcome!

Andrew: Excellent information!  I had never thought before of why it worked.  Nice to gain a little revelation every once in a while and realize that something like that actually has some reasoning behind it :) Great article from Raymond Chen.  Thanks for sharing!

From the comments on Raymond&#039;s post, it looks like people were trying to suggest a similar method for doing the same thing with echo on a *nix system.  I don&#039;t know if this is the case on all *nix&#039;es, but at least on Slackware and Debian distributions of Linux, I&#039;m able to accomplish a blank line/carriage return by simply using: echo &gt;&gt; somefile (echo followed by nothing).</description>
		<content:encoded><![CDATA[<p>Matias: You&#8217;re welcome!</p>
<p>Andrew: Excellent information!  I had never thought before of why it worked.  Nice to gain a little revelation every once in a while and realize that something like that actually has some reasoning behind it <img src='http://www.dearmisterjones.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Great article from Raymond Chen.  Thanks for sharing!</p>
<p>From the comments on Raymond&#8217;s post, it looks like people were trying to suggest a similar method for doing the same thing with echo on a *nix system.  I don&#8217;t know if this is the case on all *nix&#8217;es, but at least on Slackware and Debian distributions of Linux, I&#8217;m able to accomplish a blank line/carriage return by simply using: echo >> somefile (echo followed by nothing).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew from Vancouver</title>
		<link>http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-6</link>
		<dc:creator>Andrew from Vancouver</dc:creator>
		<pubDate>Fri, 04 Apr 2008 23:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.dearmisterjones.com/index.php/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-6</guid>
		<description>Ahhh, but why does it work? I&#039;ve used it for years and years and regarded it as a tweak that just worked.

But there is a reason! By design, cmd.exe will interpret what you &quot;echo&quot;. So, to get it to just darn well echo what you&#039;re telling it to, but still be able to pass parameters, you need a way to tell it which is which.

All credit goes to Raymond Chen at his blog:

http://blogs.msdn.com/oldnewthing/archive/2008/04/03/8352719.aspx</description>
		<content:encoded><![CDATA[<p>Ahhh, but why does it work? I&#8217;ve used it for years and years and regarded it as a tweak that just worked.</p>
<p>But there is a reason! By design, cmd.exe will interpret what you &#8220;echo&#8221;. So, to get it to just darn well echo what you&#8217;re telling it to, but still be able to pass parameters, you need a way to tell it which is which.</p>
<p>All credit goes to Raymond Chen at his blog:</p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2008/04/03/8352719.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2008/04/03/8352719.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matias</title>
		<link>http://www.dearmisterjones.com/wordpress/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-5</link>
		<dc:creator>Matias</dc:creator>
		<pubDate>Thu, 20 Mar 2008 14:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dearmisterjones.com/index.php/2008/01/25/how-to-insert-a-carriage-return-with-batch/#comment-5</guid>
		<description>Thank you very much, I needed this :)</description>
		<content:encoded><![CDATA[<p>Thank you very much, I needed this <img src='http://www.dearmisterjones.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

