<?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; bash</title>
	<atom:link href="http://doing.liduan.com/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Thu, 11 Feb 2010 11:19:37 +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>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>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>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>
