<?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: Linux Tip #9: Create multiple folder or files</title>
	<atom:link href="http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/</link>
	<description>Knowledge bling's the finer things in life.</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:10:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Aik</title>
		<link>http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/comment-page-1/#comment-46366</link>
		<dc:creator>Aik</dc:creator>
		<pubDate>Sun, 05 Jul 2009 01:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/#comment-46366</guid>
		<description>On my side, here&#039;s what i will do:

1. Use -p option to avoid being bugged with error directory exists, and &#039;seq&#039; command to allow flexible numbering, (i.e: 2,4,6,8 or 1,3,5,7, or any number stepping):
# for i in `seq 1 100`; do mkdir -p &quot;folder-$i&quot;; done

2. for simple few and drilled in directory
# mkdir -p folder-{1,2,3}
# mkdir -p folder-{7,19, 30)</description>
		<content:encoded><![CDATA[<p>On my side, here&#8217;s what i will do:</p>
<p>1. Use -p option to avoid being bugged with error directory exists, and &#8216;seq&#8217; command to allow flexible numbering, (i.e: 2,4,6,8 or 1,3,5,7, or any number stepping):<br />
# for i in `seq 1 100`; do mkdir -p &#8220;folder-$i&#8221;; done</p>
<p>2. for simple few and drilled in directory<br />
# mkdir -p folder-{1,2,3}<br />
# mkdir -p folder-{7,19, 30)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danesh</title>
		<link>http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/comment-page-1/#comment-46326</link>
		<dc:creator>Danesh</dc:creator>
		<pubDate>Sat, 04 Jul 2009 08:40:09 +0000</pubDate>
		<guid isPermaLink="false">http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/#comment-46326</guid>
		<description>Thanks dude...</description>
		<content:encoded><![CDATA[<p>Thanks dude&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geek00l</title>
		<link>http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/comment-page-1/#comment-46321</link>
		<dc:creator>geek00l</dc:creator>
		<pubDate>Sat, 04 Jul 2009 05:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://thedaneshproject.com/posts/linux-tip-9-create-multiple-folder-or-files/#comment-46321</guid>
		<description>For the bash -

for i in {1..10}; do mkdir folder-$i;done

Bingo and cheers!</description>
		<content:encoded><![CDATA[<p>For the bash -</p>
<p>for i in {1..10}; do mkdir folder-$i;done</p>
<p>Bingo and cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

