<?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: bash shell script declaring/creating arrays</title>
	<atom:link href="http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:22:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bf Hayati</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-33361</link>
		<dc:creator>Bf Hayati</dc:creator>
		<pubDate>Fri, 01 Jul 2011 17:58:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-33361</guid>
		<description>thats great but can any one know how to use array in loop like ,or know how to change number from decimle into binary  plzzzzzzzzzzzzz

</description>
		<content:encoded><![CDATA[<p>thats great but can any one know how to use array in loop like ,or know how to change number from decimle into binary  plzzzzzzzzzzzzz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Duffy</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-42589</link>
		<dc:creator>Matt Duffy</dc:creator>
		<pubDate>Wed, 22 Sep 2010 07:19:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-42589</guid>
		<description>Hi, just found this site and it&#039;s been really helpful so far.  I have a problem with assigning the output of a find command into an array.  The find command works fine on it&#039;s own:

find &quot;$path&quot; ( -type d -o -type f ) -name &#039;[.]*&#039; -print0

where $path is a string with a file system path.  This finds all files or directories in a subtree with names that begin with a dot (.svn, .DS_Store, etc).  Currently, the output is piped to xargs to delete the files it finds.  It uses the -print0 to account for space characters in $path.

What I would like to do is have the output redirected into an array where each array element is a string path value for a file/directory with a dot name.  The problem I am having is that there are many files the subtree that have spaces in their name and when the find command output is redirected to the array the space characters in the string cause it to be split into more than one array element.

For example, a string like:
web/Cappuccino/iTunes Layout/Frameworks/AppKit/Resources/.DS_Store

will be split at iTunesLayout to create array elements

array[n] = web/Cappuccino/iTunes
array[n+1] = Layout/Frameworks/AppKit/Resources/.DS_Store

I have tried a number of different syntaxes all with the same result.  I feel like it&#039;s just a simple error in my variable quoting or something, but I am stuck.  I think it should look something like this (but this is wrong):

array=( `find &quot;$path&quot; ( -type f -or -type d ) -name &#039;[.]*&#039; -print0 &#124; xargs -0 -n 1` )

Any suggestions?  I am really stuck on this.

Cheers</description>
		<content:encoded><![CDATA[<p>Hi, just found this site and it&#8217;s been really helpful so far.  I have a problem with assigning the output of a find command into an array.  The find command works fine on it&#8217;s own:</p>
<p>find &#8220;$path&#8221; ( -type d -o -type f ) -name &#8216;[.]*&#8217; -print0</p>
<p>where $path is a string with a file system path.  This finds all files or directories in a subtree with names that begin with a dot (.svn, .DS_Store, etc).  Currently, the output is piped to xargs to delete the files it finds.  It uses the -print0 to account for space characters in $path.</p>
<p>What I would like to do is have the output redirected into an array where each array element is a string path value for a file/directory with a dot name.  The problem I am having is that there are many files the subtree that have spaces in their name and when the find command output is redirected to the array the space characters in the string cause it to be split into more than one array element.</p>
<p>For example, a string like:<br />
web/Cappuccino/iTunes Layout/Frameworks/AppKit/Resources/.DS_Store</p>
<p>will be split at iTunesLayout to create array elements</p>
<p>array[n] = web/Cappuccino/iTunes<br />
array[n+1] = Layout/Frameworks/AppKit/Resources/.DS_Store</p>
<p>I have tried a number of different syntaxes all with the same result.  I feel like it&#8217;s just a simple error in my variable quoting or something, but I am stuck.  I think it should look something like this (but this is wrong):</p>
<p>array=( `find &#8220;$path&#8221; ( -type f -or -type d ) -name &#8216;[.]*&#8217; -print0 | xargs -0 -n 1` )</p>
<p>Any suggestions?  I am really stuck on this.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varun Avashia</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-42382</link>
		<dc:creator>Varun Avashia</dc:creator>
		<pubDate>Tue, 14 Sep 2010 08:18:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-42382</guid>
		<description>
#Initialize commands
init command

echo &quot;Total packages found: &quot; $(rpm -qa &#124; grep -c &quot;some string&quot;)

#Search for packages and remove them one by one
for package in $(rpm -qa &#124; grep &quot;some string&quot;);
do
  echo &quot;Removing &quot; $package
  rpm -fe $package
done

#Cleanup
Clean up commands

echo &quot;Remaining packages: &quot; $(rpm -qa &#124; grep -c &quot;some string&quot;)
</description>
		<content:encoded><![CDATA[<p>#Initialize commands<br />
init command</p>
<p>echo &#8220;Total packages found: &#8221; $(rpm -qa | grep -c &#8220;some string&#8221;)</p>
<p>#Search for packages and remove them one by one<br />
for package in $(rpm -qa | grep &#8220;some string&#8221;);<br />
do<br />
  echo &#8220;Removing &#8221; $package<br />
  rpm -fe $package<br />
done</p>
<p>#Cleanup<br />
Clean up commands</p>
<p>echo &#8220;Remaining packages: &#8221; $(rpm -qa | grep -c &#8220;some string&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Hernandez</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-41638</link>
		<dc:creator>Bill Hernandez</dc:creator>
		<pubDate>Wed, 18 Aug 2010 14:46:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-41638</guid>
		<description>As I was digging through my notes I found this...


------------------------------------------------------
NOTES : Sample code for [ jot ] command...
------------------------------------------------------

# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
RANDOM NUMBERS - print three random numbers between [1 - 500]
[2007.06.08](06:26AM) -&gt; [bhernandez] ~ 
$ operation=-r ; reps=3 ; begin=1 ; end=500 ; jot $operation $reps $begin $end

15
438
164
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+

SEQUENCE OF NUMBERS


	jot 21 -1 1.00      # prints 21 evenly spaced numbers increasing from -1 to 1.  
	
	jot 20 5      # prints 20 evenly spaced numbers starting at 5  
	
	my_seq=`jot 20 1`      # prints 20 evenly spaced numbers starting at 1  
	echo ${my_seq}
	
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
# ROUTINE FROM bh_dir_samples - Example using {sed, wc, jot, and a for loop}
# FOR MORE EXAMPLES SEE  --&gt;  bh_dir_samples
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
echo
echo &quot;( 19 )  BASH - Example using {sed, wc, jot, and a for loop}&quot;
my_path=&quot;/tmp/state/city/farm/barn/tractor/keys/red/small&quot;
my_str=`echo &quot;$my_path&quot; &#124; sed &#039;s/// /g&#039;`
my_word_count=`echo $my_str &#124; wc -w` ;
how_many_levels_back=2
max_count=`expr $my_word_count - $how_many_levels_back`
my_seq=`jot $max_count 1`      # prints 20 evenly spaced numbers starting at 1  

n=1
for arg in $my_str ; 
do 
	if [ $n -gt 0 ]
	then
		if [ $n -le $max_count ]
		then
			# echo -n &quot;$n/$arg&quot;
			 # echo -n &quot;/$arg&quot;
			 my_result=&quot;${my_result}/${arg}&quot;
		 fi
	 fi
	 let &quot;n++&quot;
done

echo &quot;( a )        --&gt;    $my_path = $my_path&quot;
echo &quot;( b )        --&gt;    $how_many_levels_back = $how_many_levels_back&quot;
echo &quot;( c )        --&gt;    $max_count = $max_count&quot;
echo &quot;( d )        --&gt;    $my_seq = `echo $my_seq`&quot;									# ( d ) This one shows up on one line
echo &quot;( e )        --&gt;    $my_seq = ${my_seq}&quot;											# ( e ) This shows up on separate lines
echo &quot;( f )        --&gt;    $my_seq = `echo $my_seq &#124; sed &#039;s/n/ /g&#039;`&quot;		# ( f ) This one shows up on one line
echo &quot;( g )        --&gt;    $my_result = $my_result&quot;

exit
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
# RESULTS
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
( 19 )  BASH - Example using {sed, wc, jot, and a for loop}
( a )        --&gt;    $my_path = /tmp/state/city/farm/barn/tractor/keys/red/small
( b )        --&gt;    $how_many_levels_back = 2
( c )        --&gt;    $max_count = 7
( d )        --&gt;    $my_seq = 1 2 3 4 5 6 7
( e )        --&gt;    $my_seq = 1
2
3
4
5
6
7
( f )        --&gt;    $my_seq = 1 2 3 4 5 6 7
( g )        --&gt;    $my_result = /tmp/state/city/farm/barn/tractor/keys

# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
[2007.05.08](04:40PM) -&gt; [bhernandez] ~ 
$ 
# +---------+---------+---------+---------+---------+---------+---------+---------+---------+
</description>
		<content:encoded><![CDATA[<p>As I was digging through my notes I found this&#8230;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
NOTES : Sample code for [ jot ] command&#8230;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p># +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
RANDOM NUMBERS &#8211; print three random numbers between [1 - 500]<br />
[2007.06.08](06:26AM) -&gt; [bhernandez] ~<br />
$ operation=-r ; reps=3 ; begin=1 ; end=500 ; jot $operation $reps $begin $end</p>
<p>15<br />
438<br />
164<br />
# +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+</p>
<p>SEQUENCE OF NUMBERS</p>
<p>	jot 21 -1 1.00      # prints 21 evenly spaced numbers increasing from -1 to 1.  </p>
<p>	jot 20 5      # prints 20 evenly spaced numbers starting at 5  </p>
<p>	my_seq=`jot 20 1`      # prints 20 evenly spaced numbers starting at 1<br />
	echo ${my_seq}</p>
<p># +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
# ROUTINE FROM bh_dir_samples &#8211; Example using {sed, wc, jot, and a for loop}<br />
# FOR MORE EXAMPLES SEE  &#8211;&gt;  bh_dir_samples<br />
# +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
echo<br />
echo &#8220;( 19 )  BASH &#8211; Example using {sed, wc, jot, and a for loop}&#8221;<br />
my_path=&#8221;/tmp/state/city/farm/barn/tractor/keys/red/small&#8221;<br />
my_str=`echo &#8220;$my_path&#8221; | sed &#8217;s/// /g&#8217;`<br />
my_word_count=`echo $my_str | wc -w` ;<br />
how_many_levels_back=2<br />
max_count=`expr $my_word_count &#8211; $how_many_levels_back`<br />
my_seq=`jot $max_count 1`      # prints 20 evenly spaced numbers starting at 1  </p>
<p>n=1<br />
for arg in $my_str ;<br />
do<br />
	if [ $n -gt 0 ]<br />
	then<br />
		if [ $n -le $max_count ]<br />
		then<br />
			# echo -n &#8220;$n/$arg&#8221;<br />
			 # echo -n &#8220;/$arg&#8221;<br />
			 my_result=&#8221;${my_result}/${arg}&#8221;<br />
		 fi<br />
	 fi<br />
	 let &#8220;n++&#8221;<br />
done</p>
<p>echo &#8220;( a )        &#8211;&gt;    $my_path = $my_path&#8221;<br />
echo &#8220;( b )        &#8211;&gt;    $how_many_levels_back = $how_many_levels_back&#8221;<br />
echo &#8220;( c )        &#8211;&gt;    $max_count = $max_count&#8221;<br />
echo &#8220;( d )        &#8211;&gt;    $my_seq = `echo $my_seq`&#8221;									# ( d ) This one shows up on one line<br />
echo &#8220;( e )        &#8211;&gt;    $my_seq = ${my_seq}&#8221;											# ( e ) This shows up on separate lines<br />
echo &#8220;( f )        &#8211;&gt;    $my_seq = `echo $my_seq | sed &#8217;s/n/ /g&#8217;`&#8221;		# ( f ) This one shows up on one line<br />
echo &#8220;( g )        &#8211;&gt;    $my_result = $my_result&#8221;</p>
<p>exit<br />
# +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
# RESULTS<br />
# +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
( 19 )  BASH &#8211; Example using {sed, wc, jot, and a for loop}<br />
( a )        &#8211;&gt;    $my_path = /tmp/state/city/farm/barn/tractor/keys/red/small<br />
( b )        &#8211;&gt;    $how_many_levels_back = 2<br />
( c )        &#8211;&gt;    $max_count = 7<br />
( d )        &#8211;&gt;    $my_seq = 1 2 3 4 5 6 7<br />
( e )        &#8211;&gt;    $my_seq = 1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
( f )        &#8211;&gt;    $my_seq = 1 2 3 4 5 6 7<br />
( g )        &#8211;&gt;    $my_result = /tmp/state/city/farm/barn/tractor/keys</p>
<p># +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
[2007.05.08](04:40PM) -&gt; [bhernandez] ~<br />
$<br />
# +&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ayesha</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-41252</link>
		<dc:creator>Ayesha</dc:creator>
		<pubDate>Tue, 03 Aug 2010 19:13:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-41252</guid>
		<description>How can I insert elements in an array from another text file?? I want to read numbers from another text file and insert them in an array??</description>
		<content:encoded><![CDATA[<p>How can I insert elements in an array from another text file?? I want to read numbers from another text file and insert them in an array??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ll</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-41066</link>
		<dc:creator>Ll</dc:creator>
		<pubDate>Wed, 28 Jul 2010 04:30:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-41066</guid>
		<description>did u create it.. wow.... </description>
		<content:encoded><![CDATA[<p>did u create it.. wow&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aparnacomp</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-40641</link>
		<dc:creator>Aparnacomp</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:11:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-40641</guid>
		<description>to convert a decimal number into its equivalent binary number.....using shell script:

created by APARNA..........


program

echo &quot; program to convert a decimal number into its equivalent binary number.......&quot; 
echo -e &quot;enter a decimal number....&quot; 
read no 
d=$no 
echo &quot;____________________________________________________________&quot; 
r=0 
b=0 
if test $d -eq 0 
then 
echo &quot;Binary of 0 is 0...&quot; 
else 
   if test $d -eq 1 
   then 
   echo &quot;Binary of 1 is 1...&quot; 
   else 
   i=0 
echo &quot;d=$d&quot; 
while [ $d -ne 1 ] 
do 
 r=`expr $d % 2` 
 d=`expr $d / 2` 
echo &quot;       r=$r&quot; 
echo &quot;d=$d&quot; 
#add one by one element in an array......... 
a=( &quot;${a[@]}&quot; &quot;$r&quot; ) 
i=$i+1 
done 
a=( &quot;${a[@]}&quot; &quot;$d&quot; ) 
fi 
fi 
echo &quot;___________________________________________________________&quot; 
len=${#a[*]} 
echo &quot;equivalent binary number of $no  is.....&quot; 
j=-1 
l=`expr $len - 1` 
while [ $l -gt $j ]; do 
        printf &quot;%2d&quot; ${a[$l]} 
        let l-- 
done 
printf &quot;n&quot; 
echo &quot; GOOD BYE..........&quot; </description>
		<content:encoded><![CDATA[<p>to convert a decimal number into its equivalent binary number&#8230;..using shell script:</p>
<p>created by APARNA&#8230;&#8230;&#8230;.</p>
<p>program</p>
<p>echo &#8221; program to convert a decimal number into its equivalent binary number&#8230;&#8230;.&#8221;<br />
echo -e &#8220;enter a decimal number&#8230;.&#8221;<br />
read no<br />
d=$no<br />
echo &#8220;____________________________________________________________&#8221;<br />
r=0<br />
b=0<br />
if test $d -eq 0<br />
then<br />
echo &#8220;Binary of 0 is 0&#8230;&#8221;<br />
else<br />
   if test $d -eq 1<br />
   then<br />
   echo &#8220;Binary of 1 is 1&#8230;&#8221;<br />
   else<br />
   i=0<br />
echo &#8220;d=$d&#8221;<br />
while [ $d -ne 1 ]<br />
do<br />
 r=`expr $d % 2`<br />
 d=`expr $d / 2`<br />
echo &#8221;       r=$r&#8221;<br />
echo &#8220;d=$d&#8221;<br />
#add one by one element in an array&#8230;&#8230;&#8230;<br />
a=( &#8220;${a[@]}&#8221; &#8220;$r&#8221; )<br />
i=$i+1<br />
done<br />
a=( &#8220;${a[@]}&#8221; &#8220;$d&#8221; )<br />
fi<br />
fi<br />
echo &#8220;___________________________________________________________&#8221;<br />
len=${#a[*]}<br />
echo &#8220;equivalent binary number of $no  is&#8230;..&#8221;<br />
j=-1<br />
l=`expr $len &#8211; 1`<br />
while [ $l -gt $j ]; do<br />
        printf &#8220;%2d&#8221; ${a[$l]}<br />
        let l&#8211;<br />
done<br />
printf &#8220;n&#8221;<br />
echo &#8221; GOOD BYE&#8230;&#8230;&#8230;.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asd</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-35598</link>
		<dc:creator>asd</dc:creator>
		<pubDate>Wed, 11 Nov 2009 23:21:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-35598</guid>
		<description>asdasdasd</description>
		<content:encoded><![CDATA[<p>asdasdasd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob.experience</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-29807</link>
		<dc:creator>bob.experience</dc:creator>
		<pubDate>Tue, 28 Apr 2009 11:35:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-29807</guid>
		<description>Well done man! Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>Well done man! Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manav</title>
		<link>http://www.tech-recipes.com/rx/635/bash-shell-script-declaringcreating-arrays/comment-page-1/#comment-29323</link>
		<dc:creator>Manav</dc:creator>
		<pubDate>Mon, 13 Apr 2009 09:49:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-29323</guid>
		<description>Good one</description>
		<content:encoded><![CDATA[<p>Good one</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 (User agent is rejected)
Database Caching 2/17 queries in 1.219 seconds using memcached
Object Caching 417/419 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-10 07:01:26 -->
