<?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: Filenames by Design, Part Two</title>
	<atom:link href="http://www.linux-mag.com/id/7171/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-mag.com/id/7171/</link>
	<description>Open Source, Open Standards</description>
	<lastBuildDate>Sat, 05 Oct 2013 13:48:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Alexx</title>
		<link>http://www.linux-mag.com/id/7171/#comment-145417</link>
		<dc:creator>Alexx</dc:creator>
		<pubDate>Fri, 10 Feb 2012 05:21:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-145417</guid>
		<description>????????  ??????????????? ???????????????????????????????????????????????????????? tnhkas</description>
		<content:encoded><![CDATA[<p>????????  ??????????????? ???????????????????????????????????????????????????????? tnhkas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maximd</title>
		<link>http://www.linux-mag.com/id/7171/#comment-5867</link>
		<dc:creator>maximd</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-5867</guid>
		<description>Hello, this is a great article and in an attempt to share more knowledge about command line tips, here&#039;s this one:&lt;br /&gt;
&lt;br /&gt;
With Bash (this tip does not work with Csh for exemple), instead of using {1,2,3,4,5,6,7,8,9} you can simply type {1..9}.&lt;br /&gt;
&lt;br /&gt;
Give it a try in a Bash shell with:&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
echo {1..9}&lt;br /&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hello, this is a great article and in an attempt to share more knowledge about command line tips, here&#8217;s this one:</p>
<p>With Bash (this tip does not work with Csh for exemple), instead of using {1,2,3,4,5,6,7,8,9} you can simply type {1..9}.</p>
<p>Give it a try in a Bash shell with:<br />
<code><br />
echo {1..9}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frases</title>
		<link>http://www.linux-mag.com/id/7171/#comment-5868</link>
		<dc:creator>frases</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-5868</guid>
		<description>Great article, Jerry.  Learned some new tricks!&lt;br /&gt;
&lt;br /&gt;
Maximd,&lt;br /&gt;
Interesting..your shortcut didn&#039;t work in my Bash shell on my MacBook:&lt;br /&gt;
MACLT:~/Documents$ echo $SHELL&lt;br /&gt;
/bin/bash&lt;br /&gt;
MACLT:~/Documents$ echo {1,9}{a,b,c}&lt;br /&gt;
1a 1b 1c 9a 9b 9c&lt;br /&gt;
MACLT:~/Documents$ echo {1..9}&lt;br /&gt;
{1..9}&lt;br /&gt;
&lt;br /&gt;
scott</description>
		<content:encoded><![CDATA[<p>Great article, Jerry.  Learned some new tricks!</p>
<p>Maximd,<br />
Interesting..your shortcut didn&#8217;t work in my Bash shell on my MacBook:<br />
MACLT:~/Documents$ echo $SHELL<br />
/bin/bash<br />
MACLT:~/Documents$ echo {1,9}{a,b,c}<br />
1a 1b 1c 9a 9b 9c<br />
MACLT:~/Documents$ echo {1..9}<br />
{1..9}</p>
<p>scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wirawan0</title>
		<link>http://www.linux-mag.com/id/7171/#comment-5869</link>
		<dc:creator>wirawan0</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-5869</guid>
		<description>Commenting on maximd&#039;s comment:&lt;br /&gt;
&lt;br /&gt;
&gt; With Bash (this tip does not work with Csh for exemple), instead of using {1,2,3,4,5,6,7,8,9} you can simply type {1..9}.&lt;br /&gt;
&lt;br /&gt;
This is correct, but it only works for Bash 3.0 and above.</description>
		<content:encoded><![CDATA[<p>Commenting on maximd&#8217;s comment:</p>
<p>&gt; With Bash (this tip does not work with Csh for exemple), instead of using {1,2,3,4,5,6,7,8,9} you can simply type {1..9}.</p>
<p>This is correct, but it only works for Bash 3.0 and above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jp</title>
		<link>http://www.linux-mag.com/id/7171/#comment-5870</link>
		<dc:creator>jp</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-5870</guid>
		<description>Thanks, maximd and wirawan0.  I need to take a closer look at bash 3.&lt;br /&gt;
&lt;br /&gt;
I&#039;m guessing that bash got the {1..9} expansion from the Z Shell, which has had it for quite a while.  Here&#039;s some info from the zshexpn(1) manpage:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;An expression of the form `{n1..n2}&#039;, where n1 and n2 are integers, is expanded to every number between n1 and n2 inclusive.  If either number begins with a zero, all the resulting numbers will be padded with leading zeroes to that minimum width.  If the numbers are in decreasing order the resulting sequence will also be in decreasing order.&lt;br /&gt;
&lt;br /&gt;
If a brace expression matches none of the above forms, it is left unchanged, unless the BRACE_CCL option is set. In that case, it is expanded to a sorted list of the individual characters between the braces, in the manner of a search set.  `-&#039; is treated specially as in a search set, but `^&#039; or `!&#039; as the first character is treated normally.&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Jerry</description>
		<content:encoded><![CDATA[<p>Thanks, maximd and wirawan0.  I need to take a closer look at bash 3.</p>
<p>I&#8217;m guessing that bash got the {1..9} expansion from the Z Shell, which has had it for quite a while.  Here&#8217;s some info from the zshexpn(1) manpage:</p>
<blockquote><p>An expression of the form `{n1..n2}&#8217;, where n1 and n2 are integers, is expanded to every number between n1 and n2 inclusive.  If either number begins with a zero, all the resulting numbers will be padded with leading zeroes to that minimum width.  If the numbers are in decreasing order the resulting sequence will also be in decreasing order.</p>
<p>If a brace expression matches none of the above forms, it is left unchanged, unless the BRACE_CCL option is set. In that case, it is expanded to a sorted list of the individual characters between the braces, in the manner of a search set.  `-&#8217; is treated specially as in a search set, but `^&#8217; or `!&#8217; as the first character is treated normally.</p></blockquote>
<p>Jerry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: akton</title>
		<link>http://www.linux-mag.com/id/7171/#comment-5871</link>
		<dc:creator>akton</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7171/#comment-5871</guid>
		<description>The seq command is also nice to generate sequences. Instead of typing {1,2,3,4,5,6,7,8,9} , you can type $(seq 1 9)</description>
		<content:encoded><![CDATA[<p>The seq command is also nice to generate sequences. Instead of typing {1,2,3,4,5,6,7,8,9} , you can type $(seq 1 9)</p>
]]></content:encoded>
	</item>
</channel>
</rss>