<?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: 10 Windows Command Line Tips You Should Check Out</title>
	<atom:link href="http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Sat, 11 Feb 2012 04:28:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: satyendra</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-421975</link>
		<dc:creator>satyendra</dc:creator>
		<pubDate>Sun, 29 Nov 2009 05:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-421975</guid>
		<description>Thats really a nice info ..now i will be able to use cmd with full potential..</description>
		<content:encoded><![CDATA[<p>Thats really a nice info ..now i will be able to use cmd with full potential..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-411860</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Fri, 16 Oct 2009 14:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-411860</guid>
		<description>Correction on running multiple commands - if you use &amp;&amp;, the command after the &amp;&amp; only runs if the command before completes without error, which is what you often want.  If you want the second command to run no matter what happens with the first command, use a single &amp;.

OK, here&#039;s where it gets real fun - you can use &#124;&#124; to run the second command only if the first command causes an error.

Then it gets even more fun - you can chain these together!

A simple example:

&lt;code&gt;DIR xyzzy &amp;&amp; Echo Found it! &#124;&#124; Echo It&#039;s not there.&lt;/code&gt;

This will run the command 
    &lt;code&gt;DIR xyzzy&lt;/code&gt;
If xyzzy exists, then &quot;Found it!&quot; will be displayed
If xyzzy doesn&#039;t exist, then &quot;It&#039;s not there.&quot; will be displayed.</description>
		<content:encoded><![CDATA[<p>Correction on running multiple commands &#8211; if you use &amp;&amp;, the command after the &amp;&amp; only runs if the command before completes without error, which is what you often want.  If you want the second command to run no matter what happens with the first command, use a single &amp;.</p>
<p>OK, here&#8217;s where it gets real fun &#8211; you can use || to run the second command only if the first command causes an error.</p>
<p>Then it gets even more fun &#8211; you can chain these together!</p>
<p>A simple example:</p>
<p><code>DIR xyzzy &amp;&amp; Echo Found it! || Echo It's not there.</code></p>
<p>This will run the command<br />
    <code>DIR xyzzy</code><br />
If xyzzy exists, then &#8220;Found it!&#8221; will be displayed<br />
If xyzzy doesn&#8217;t exist, then &#8220;It&#8217;s not there.&#8221; will be displayed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PhÃ¹ng VÄƒn Huy</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-406470</link>
		<dc:creator>PhÃ¹ng VÄƒn Huy</dc:creator>
		<pubDate>Thu, 24 Sep 2009 02:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-406470</guid>
		<description>You can
Change title console window: title My Console Window
Change color text/background of console window: color 0f
Get username like whoami in Linux: echo %username%</description>
		<content:encoded><![CDATA[<p>You can<br />
Change title console window: title My Console Window<br />
Change color text/background of console window: color 0f<br />
Get username like whoami in Linux: echo %username%</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389484</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 12 Jun 2009 08:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389484</guid>
		<description>Hubdog - I always wanted an easier way to cut and paste!  Thanks</description>
		<content:encoded><![CDATA[<p>Hubdog &#8211; I always wanted an easier way to cut and paste!  Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun Kashyap</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389427</link>
		<dc:creator>Varun Kashyap</dc:creator>
		<pubDate>Thu, 11 Jun 2009 14:51:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389427</guid>
		<description>May be right click is easier ^_^</description>
		<content:encoded><![CDATA[<p>May be right click is easier ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun Kashyap</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389426</link>
		<dc:creator>Varun Kashyap</dc:creator>
		<pubDate>Thu, 11 Jun 2009 14:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389426</guid>
		<description>Yes, indeed you can use the Tab key to complete directories and filenames. Should have stuck it in somewhere!</description>
		<content:encoded><![CDATA[<p>Yes, indeed you can use the Tab key to complete directories and filenames. Should have stuck it in somewhere!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CGA</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389398</link>
		<dc:creator>CGA</dc:creator>
		<pubDate>Thu, 11 Jun 2009 07:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389398</guid>
		<description>If you want a &quot;real&quot; sleep command you can download the Windows 2003 Resource Kit as per this article:
http://malektips.com/xp_dos_0002.html</description>
		<content:encoded><![CDATA[<p>If you want a &#8220;real&#8221; sleep command you can download the Windows 2003 Resource Kit as per this article:<br />
<a href="http://malektips.com/xp_dos_0002.html" rel="nofollow">http://malektips.com/xp_dos_0002.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hubdog</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389341</link>
		<dc:creator>hubdog</dc:creator>
		<pubDate>Wed, 10 Jun 2009 16:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389341</guid>
		<description>It&#039;s also useful to enable QuickEdit Mode to be able to highlight and paste with the mouse without having to right-click and select paste. 

Set it up by clicking the little &quot;c:\_&quot; icon in the upper left of the command window, and choose &quot;defaults&quot;. On the &quot;Options&quot; tab check &quot;QuickEdit Mode&quot; and click &quot;OK&quot;. Click the icon again, select &quot;Properties&quot; and check &quot;QuickEdit Mode&quot; and click &quot;OK&quot;. After hitting ok this time you will get a dialog box, select &quot;Save properities for future windows with same title.&quot; and hit ok.

Now you will be able to use the left mouse button to highlight text, and the right mouse button to copy it. Enjoy.</description>
		<content:encoded><![CDATA[<p>It&#8217;s also useful to enable QuickEdit Mode to be able to highlight and paste with the mouse without having to right-click and select paste. </p>
<p>Set it up by clicking the little &#8220;c:\_&#8221; icon in the upper left of the command window, and choose &#8220;defaults&#8221;. On the &#8220;Options&#8221; tab check &#8220;QuickEdit Mode&#8221; and click &#8220;OK&#8221;. Click the icon again, select &#8220;Properties&#8221; and check &#8220;QuickEdit Mode&#8221; and click &#8220;OK&#8221;. After hitting ok this time you will get a dialog box, select &#8220;Save properities for future windows with same title.&#8221; and hit ok.</p>
<p>Now you will be able to use the left mouse button to highlight text, and the right mouse button to copy it. Enjoy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389251</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Tue, 09 Jun 2009 21:14:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389251</guid>
		<description>RE:  FILTER COMMAND OUTPUT  ........ The find command does not work   but       findstr does....................... o.O</description>
		<content:encoded><![CDATA[<p>RE:  FILTER COMMAND OUTPUT  &#8230;&#8230;.. The find command does not work   but       findstr does&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. o.O</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gennice</title>
		<link>http://www.makeuseof.com/tag/10-windows-command-line-tips-tricks-you-should-definitely-check-out/#comment-389210</link>
		<dc:creator>Gennice</dc:creator>
		<pubDate>Tue, 09 Jun 2009 15:34:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.makeuseof.com/?p=18664#comment-389210</guid>
		<description>Excellent and easy to learn explanation. Thanks for the tips!</description>
		<content:encoded><![CDATA[<p>Excellent and easy to learn explanation. Thanks for the tips!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/5 queries in 0.007 seconds using apc
Object Caching 299/300 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-11 05:42:05 -->
