<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doing &#38; Done &#187; shell</title>
	<atom:link href="http://doing.liduan.com/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Tue, 03 Aug 2010 04:11:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>add php gd (graphics directly) support i&#8230;</title>
		<link>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/</link>
		<comments>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:26:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[php5-gd]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/</guid>
		<description><![CDATA[add php gd (graphics directly) support in ubuntu

#sudo apt-get install php5-gd

then, restart web service

#sudo service lighttpd restart //or
#sudo service apache2 restart
]]></description>
			<content:encoded><![CDATA[<p>add php gd (graphics directly) support in ubuntu</p>
<pre class="brush: php">
#sudo apt-get install php5-gd
</pre>
<p>then, restart web service</p>
<pre class="brush: php">
#sudo service lighttpd restart //or
#sudo service apache2 restart
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/09/01/add-php-gd-graphics-directly-support-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clean kernel temp files</title>
		<link>http://doing.liduan.com/2009/08/12/397/</link>
		<comments>http://doing.liduan.com/2009/08/12/397/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:02:16 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/397/</guid>
		<description><![CDATA[clean kernel temp files

#make clean
]]></description>
			<content:encoded><![CDATA[<p>clean kernel temp files</p>
<pre class="brush: bash">
#make clean
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/397/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>next, install modules of new kernel:</title>
		<link>http://doing.liduan.com/2009/08/12/396/</link>
		<comments>http://doing.liduan.com/2009/08/12/396/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:00:41 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/396/</guid>
		<description><![CDATA[next, install modules of new kernel:

#make modules_install

then, generate a image for new kernel.

#cd /lib/modules
#mkinitramfs -o initrd.img-2.6.30.4 2.6.30.4
#mv initrd.img-2.6.30.4 /boot

edit menu.lst file for grub booter, add following:

title		Ubuntu 8.04.3 LTS, kernel 2.6.30.4
root		(hd0,2)
kernel		/boot/vmlinuz root=UUID=98f69044-be12-4dde-95df-358dca35c632 ro quiet splash
initrd		/boot/initrd.img-2.6.30.4
quiet
]]></description>
			<content:encoded><![CDATA[<p>next, install modules of new kernel:</p>
<pre class="brush: bash">
#make modules_install
</pre>
<p>then, generate a image for new kernel.</p>
<pre class="brush: bash">
#cd /lib/modules
#mkinitramfs -o initrd.img-2.6.30.4 2.6.30.4
#mv initrd.img-2.6.30.4 /boot
</pre>
<p>edit menu.lst file for grub booter, add following:</p>
<pre class="brush: bash">
title		Ubuntu 8.04.3 LTS, kernel 2.6.30.4
root		(hd0,2)
kernel		/boot/vmlinuz root=UUID=98f69044-be12-4dde-95df-358dca35c632 ro quiet splash
initrd		/boot/initrd.img-2.6.30.4
quiet
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/396/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install new linux kernel 2.6.30.4 using &#8220;make install&#8221;,</title>
		<link>http://doing.liduan.com/2009/08/12/395/</link>
		<comments>http://doing.liduan.com/2009/08/12/395/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:45:32 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/395/</guid>
		<description><![CDATA[install new linux kernel 2.6.30.4 using &#8220;make install&#8221;, system should show following detail:
root@ibm-laptop:/usr/src/linux-2.6.30.4# make install
sh /usr/src/linux-2.6.30.4/arch/x86/boot/install.sh 2.6.30.4 arch/x86/boot/bzImage \
                System.map &#8220;/boot&#8221;
In order to use the new kernel image you have just installed, you
will need to reboot the machine.  First, [...]]]></description>
			<content:encoded><![CDATA[<p>install new linux kernel 2.6.30.4 using &#8220;make install&#8221;, system should show following detail:<br />
root@ibm-laptop:/usr/src/linux-2.6.30.4# make install<br />
sh /usr/src/linux-2.6.30.4/arch/x86/boot/install.sh 2.6.30.4 arch/x86/boot/bzImage \<br />
                System.map &#8220;/boot&#8221;<br />
In order to use the new kernel image you have just installed, you<br />
will need to reboot the machine.  First, however, you will need to<br />
either make a bootable floppy diskette, re-run LILO, or have GRUB<br />
installed.</p>
<p>Checking for ELILO&#8230;No</p>
<p>GRUB is installed. To automatically switch to new kernels, point your<br />
default entry in menu.lst to /boot/vmlinuz-2.6.30.4</p>
<p>====================<br />
GRUB menu configuration file menu.lst should be update.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/395/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configuration and update to linux kernel&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/</link>
		<comments>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:28:35 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/</guid>
		<description><![CDATA[configuration and update to linux kernel 2.6.30.4
using root account do following.

#make mrproper #check kernel .o and .config files

next configuration kernel. there are three kinds of configuration UI.

#make config #Text UI


#make menuconfig #Text graph UI


#make xconfig

before using menuconfig mode, ncurses should be installed. 

#apt-get install libncurses*

and before using xconfig mode, following package should be installed. 

#apt-get [...]]]></description>
			<content:encoded><![CDATA[<p>configuration and update to linux kernel 2.6.30.4</p>
<p>using root account do following.</p>
<pre class="brush: bash">
#make mrproper #check kernel .o and .config files
</pre>
<p>next configuration kernel. there are three kinds of configuration UI.</p>
<pre class="brush: bash">
#make config #Text UI
</pre>
<pre class="brush: bash">
#make menuconfig #Text graph UI
</pre>
<pre class="brush: bash">
#make xconfig
</pre>
<p>before using menuconfig mode, ncurses should be installed. </p>
<pre class="brush: bash">
#apt-get install libncurses*
</pre>
<p>and before using xconfig mode, following package should be installed. </p>
<pre class="brush: bash">
#apt-get install libqt3-headers libqt3-mt-dev
</pre>
<p>after all configuration work done. using make command to compile kernel.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get recent linux kernel (2.6.30.4) [code&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/</link>
		<comments>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:04:12 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/</guid>
		<description><![CDATA[get recent linux kernel (2.6.30.4)

$sudo wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz /usr/src
$sudo tar xvf /usr/src/linux-2.6.30.4.tar.gz

if linux-2.6.30.4.tar.bz2 package, using command:

$sudo tar jxvf /usr/src/linux-2.6.30.4.tar.bz2
]]></description>
			<content:encoded><![CDATA[<p>get recent linux kernel (2.6.30.4)</p>
<pre class="brush: bash">
$sudo wget <a href="http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz" rel="nofollow">http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz</a> /usr/src
$sudo tar xvf /usr/src/linux-2.6.30.4.tar.gz
</pre>
<p>if linux-2.6.30.4.tar.bz2 package, using command:</p>
<pre class="brush: bash">
$sudo tar jxvf /usr/src/linux-2.6.30.4.tar.bz2
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>open root account in ubuntu: [code lang=&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</link>
		<comments>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:49:30 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</guid>
		<description><![CDATA[open root account in ubuntu:

$sudo passwd root

then, set new password for root.]]></description>
			<content:encoded><![CDATA[<p>open root account in ubuntu:</p>
<pre class="brush: bash">
$sudo passwd root
</pre>
<p>then, set new password for root.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>improve your arch linux pacman speed.
 &#8230;</title>
		<link>http://doing.liduan.com/2009/02/22/improve-your-arch-linux-pacman-speed/</link>
		<comments>http://doing.liduan.com/2009/02/22/improve-your-arch-linux-pacman-speed/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 15:21:53 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pacman]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/22/improve-your-arch-linux-pacman-speed/</guid>
		<description><![CDATA[improve your arch linux pacman speed.
pacman using wget for download task. but wget is not for multiple thread download. if using &#8220;aria2&#8243;, the download speed can sharply increase.
firstly, install aria2 by:
$pacman -Sy
$pacman -S aria2
then, edit /etc/pacman.conf, add a line:
XferCommand = /usr/bin/aria2c -s 2 -m 2 -d / -o %o %u
ok, try pacman again, you can [...]]]></description>
			<content:encoded><![CDATA[<p>improve your arch linux pacman speed.</p>
<p>pacman using wget for download task. but wget is not for multiple thread download. if using &#8220;aria2&#8243;, the download speed can sharply increase.</p>
<p>firstly, install aria2 by:</p>
<p>$pacman -Sy</p>
<p>$pacman -S aria2</p>
<p>then, edit /etc/pacman.conf, add a line:</p>
<p>XferCommand = /usr/bin/aria2c -s 2 -m 2 -d / -o %o %u</p>
<p>ok, try pacman again, you can see big change for download speed.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/22/improve-your-arch-linux-pacman-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a shell script for quick uploading one f &#8230;</title>
		<link>http://doing.liduan.com/2009/02/03/a-shell-script-for-quick-uploading-one-f/</link>
		<comments>http://doing.liduan.com/2009/02/03/a-shell-script-for-quick-uploading-one-f/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 13:21:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/03/a-shell-script-for-quick-uploading-one-f/</guid>
		<description><![CDATA[a shell script for quick uploading one file via ftp:

#!/bin/bash
ftp -v -n http://ftp.server.com ]]></description>
			<content:encoded><![CDATA[<p>a shell script for quick uploading one file via ftp:<br />
<code><br />
#!/bin/bash<br />
ftp -v -n <a href="http://ftp.server.com" rel="nofollow">http://ftp.server.com</a> <<END<br />
user yourUserName yourPassword<br />
mput $1<br />
bye<br />
END<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/03/a-shell-script-for-quick-uploading-one-f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>using command &#8216;badbloocks&#8217; check bad b &#8230;</title>
		<link>http://doing.liduan.com/2009/02/01/using-command-badbloocks-check-bad-b/</link>
		<comments>http://doing.liduan.com/2009/02/01/using-command-badbloocks-check-bad-b/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 00:12:47 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/02/01/using-command-badbloocks-check-bad-b/</guid>
		<description><![CDATA[using command &#8216;badbloocks&#8217; check bad block on the device.
$badblocks -c -v /dev/sda1
-c blocks at once
-v verbose mode
in the freebsd system, smart montools can be used:

$cd /usr/ports/sysutils/smartmontools
$make config install clean
$smartctl -a /dev/ad0    // quick checking and check all
$smartctl -t long /dev/ad0  // check and test
]]></description>
			<content:encoded><![CDATA[<p>using command &#8216;badbloocks&#8217; check bad block on the device.</p>
<p><code>$badblocks -c -v /dev/sda1</code></p>
<p>-c blocks at once<br />
-v verbose mode</p>
<p>in the freebsd system, smart montools can be used:<br />
<code><br />
$cd /usr/ports/sysutils/smartmontools<br />
$make config install clean<br />
$smartctl -a /dev/ad0    // quick checking and check all<br />
$smartctl -t long /dev/ad0  // check and test<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/02/01/using-command-badbloocks-check-bad-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>export and import mysql database in comm &#8230;</title>
		<link>http://doing.liduan.com/2009/01/22/export-and-import-mysql-database-in-comm/</link>
		<comments>http://doing.liduan.com/2009/01/22/export-and-import-mysql-database-in-comm/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 10:46:38 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/01/22/export-and-import-mysql-database-in-comm/</guid>
		<description><![CDATA[export and import mysql database in command line
export
mysqldump -u admin_user -p database_name &#62; file.sql
import
mysql -u admin_user -p database_name &#60; file.sql]]></description>
			<content:encoded><![CDATA[<p>export and import mysql database in command line</p>
<p>export<br />
<code>mysqldump -u admin_user -p database_name &gt; file.sql</code><br />
import<br />
<code>mysql -u admin_user -p database_name &lt; file.sql</code></p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/01/22/export-and-import-mysql-database-in-comm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clean ubuntu package cache:sudo apt-ge &#8230;</title>
		<link>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/</link>
		<comments>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 10:23:44 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[summary]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/</guid>
		<description><![CDATA[clean ubuntu package cache:
sudo apt-get autoclean
sudo apt-get clean
sudo apt-get autoremove
clean isolated package
sudo apt-get install deborphan -y]]></description>
			<content:encoded><![CDATA[<p>clean ubuntu package cache:<br />
sudo apt-get autoclean<br />
sudo apt-get clean<br />
sudo apt-get autoremove</p>
<p>clean isolated package<br />
sudo apt-get install deborphan -y</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/20/clean-ubuntu-package-cachesudo-apt-ge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unix shell programming tutorial for comm &#8230;</title>
		<link>http://doing.liduan.com/2008/11/12/unix-shell-programming-tutorial-for-comm/</link>
		<comments>http://doing.liduan.com/2008/11/12/unix-shell-programming-tutorial-for-comm/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 20:36:14 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2008/11/12/unix-shell-programming-tutorial-for-comm/</guid>
		<description><![CDATA[unix shell programming tutorial for command awk, and a chinese version is available.]]></description>
			<content:encoded><![CDATA[<p>unix shell programming <a title="unix shell programming tutorial for command awk" htrf="http://student.northpark.edu/pemente/awk/awk1line.txt">tutorial for command awk</a>, and a <a title="unix shell programming tutorial for command awk chinese version" href="http://ximix.org/translation/awk1line_zh-CN.txt">chinese version</a> is available.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2008/11/12/unix-shell-programming-tutorial-for-comm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
