<?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: Change Directory using cd Linux Command</title>
	<atom:link href="http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/feed/" rel="self" type="application/rss+xml" />
	<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/</link>
	<description>Online Linux tutorial for beginners</description>
	<lastBuildDate>Mon, 30 Jan 2012 05:45:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: sairam</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-213</link>
		<dc:creator>sairam</dc:creator>
		<pubDate>Mon, 21 Nov 2011 05:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-213</guid>
		<description>please 
Write and execute the command to change the /bin directory</description>
		<content:encoded><![CDATA[<p>please<br />
Write and execute the command to change the /bin directory</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-211</link>
		<dc:creator>Beginner Linux Tutorial</dc:creator>
		<pubDate>Sat, 05 Nov 2011 17:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-211</guid>
		<description>Ronak,
    So you are in &lt;code&gt;/home/$USER&lt;/code&gt; and you want to be in &lt;code&gt;/SOME-DIR&lt;/code&gt; but don&#039;t  want to &lt;code&gt;cd /&lt;/code&gt;? You can &lt;code&gt;cd /SOME-DIR&lt;/code&gt; or you can &lt;code&gt;cd ../../SOME-DIR&lt;/code&gt; not sure if that answers your question or not. Let m know, thanks for stopping by!</description>
		<content:encoded><![CDATA[<p>Ronak,<br />
    So you are in <code>/home/$USER</code> and you want to be in <code>/SOME-DIR</code> but don&#8217;t  want to <code>cd /</code>? You can <code>cd /SOME-DIR</code> or you can <code>cd ../../SOME-DIR</code> not sure if that answers your question or not. Let m know, thanks for stopping by!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ronak</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-210</link>
		<dc:creator>ronak</dc:creator>
		<pubDate>Thu, 03 Nov 2011 04:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-210</guid>
		<description>naw i am &quot;~&quot; i want to /directory withouct cd / 
haw can i do the /directory?</description>
		<content:encoded><![CDATA[<p>naw i am &#8220;~&#8221; i want to /directory withouct cd /<br />
haw can i do the /directory?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-200</link>
		<dc:creator>Beginner Linux Tutorial</dc:creator>
		<pubDate>Sat, 27 Aug 2011 14:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-200</guid>
		<description>Dejan Tomic,
    I didn&#039;t try it, but I think all you have to do is escape the !. so if you wanted to &lt;code&gt;cd&lt;/code&gt; to that directory, you can run &lt;code&gt;cd /media/MyUSB/\!Project/123/&lt;/code&gt;. By placing a backslash \ in front of a character will escape it, meaning it will take it&#039;s special character properties away and use it as a plain character. Normally in Linux an * is a wild card, meaning it can match anything. So if you have a bunch of images named IMG_0001.CR2, IMG_0002.CR2, IMG_0003.CR2, and keep going. You also have an IMG_000*.CR2.. don&#039;t know why, but you do. If you do &lt;code&gt;rm -rf IMG_000*.CR2&lt;/code&gt; You will remove all of those images, not just the one with the * in the filename. Because * matches 1 2 3 and *. Now you want to delete just the one with the * in the filename, &lt;code&gt; rm -rf IMG_000\*.CR2&lt;/code&gt; now * is an actual * and not matching 1,2,3,etc.</description>
		<content:encoded><![CDATA[<p>Dejan Tomic,<br />
    I didn&#8217;t try it, but I think all you have to do is escape the !. so if you wanted to <code>cd</code> to that directory, you can run <code>cd /media/MyUSB/\!Project/123/</code>. By placing a backslash \ in front of a character will escape it, meaning it will take it&#8217;s special character properties away and use it as a plain character. Normally in Linux an * is a wild card, meaning it can match anything. So if you have a bunch of images named IMG_0001.CR2, IMG_0002.CR2, IMG_0003.CR2, and keep going. You also have an IMG_000*.CR2.. don&#8217;t know why, but you do. If you do <code>rm -rf IMG_000*.CR2</code> You will remove all of those images, not just the one with the * in the filename. Because * matches 1 2 3 and *. Now you want to delete just the one with the * in the filename, <code> rm -rf IMG_000\*.CR2</code> now * is an actual * and not matching 1,2,3,etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Tomic</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-199</link>
		<dc:creator>Dejan Tomic</dc:creator>
		<pubDate>Fri, 26 Aug 2011 11:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-199</guid>
		<description>And how can I set a directory with &quot;!&quot; in its name as the current directory?

I mean, I have a directory on my USB stick called &quot;!Project&quot;... for example /media/MyUSB/!Project/123/... now how can I switch to it with terminal so I can run my program under it?
Or it is just unsupported and I HAVE to remove the &quot;!&quot; from the directory name?</description>
		<content:encoded><![CDATA[<p>And how can I set a directory with &#8220;!&#8221; in its name as the current directory?</p>
<p>I mean, I have a directory on my USB stick called &#8220;!Project&#8221;&#8230; for example /media/MyUSB/!Project/123/&#8230; now how can I switch to it with terminal so I can run my program under it?<br />
Or it is just unsupported and I HAVE to remove the &#8220;!&#8221; from the directory name?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linux Basic Commands Tutorial &#124; Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/change-directory-using-cd-linux-command/comment-page-1/#comment-6</link>
		<dc:creator>Linux Basic Commands Tutorial &#124; Beginner Linux Tutorial</dc:creator>
		<pubDate>Thu, 30 Oct 2008 08:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=82#comment-6</guid>
		<description>[...] cd - is used for changing into a different directory in the Linux shell [...]</description>
		<content:encoded><![CDATA[<p>[...] cd &#8211; is used for changing into a different directory in the Linux shell [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

