<?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/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Top 10 Best Cheat Sheets and Tutorials for Linux / UNIX Commands</title>
	<atom:link href="http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html</link>
	<description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description>
	<lastBuildDate>Thu, 18 Mar 2010 14:19:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sonu</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-150717</link>
		<dc:creator>sonu</dc:creator>
		<pubDate>Sat, 19 Sep 2009 12:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-150717</guid>
		<description>i like you linux cammond</description>
		<content:encoded><![CDATA[<p>i like you linux cammond</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sithara</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-150157</link>
		<dc:creator>sithara</dc:creator>
		<pubDate>Sun, 16 Aug 2009 09:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-150157</guid>
		<description>Hai... thanks.Very good informations.</description>
		<content:encoded><![CDATA[<p>Hai&#8230; thanks.Very good informations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Girish Mahajan</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-149714</link>
		<dc:creator>Girish Mahajan</dc:creator>
		<pubDate>Mon, 27 Jul 2009 13:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-149714</guid>
		<description>More to add--
AWK

ACCESS LOG OPERATION -- AWK

&lt;code&gt;tail -10 access_log.2009-01-19 &#124; awk &#039;/go/ { print $13 }&#039;&lt;/code&gt;

it will grep the /go/ apps and cut the 13 th delem&#039;s .... isnt its great !
***********************
Rogers 87 100 95
Lambchop 66 89 76
Barney 12 36 27

You can perform calculations like this:

&lt;code&gt;awk &#039;{print &quot;Avg for&quot;,$1,&quot;is&quot;,($2+$3+$4)/3}&#039; grades.data&lt;/code&gt;
Avg for Rogers is 94
Avg for Lambchop is 77
Avg for Barney is 25

*********************

&lt;code&gt;cat access_log.2009-01-19  &#124; grep $1 &#124; cut -f13 -d&quot; &quot;&#124;  awk &#039;{ request += $1 } END { print request }&#039;&lt;/code&gt;

&lt;code&gt; ll -R . &#124; grep &quot;jpg\\&#124;mp4\\&#124;3gp\\&#124;gif&quot; &#124; grep &quot;Apr\\&#124;May\\&#124;Jun&quot; &#124; awk &#039;{print $5&quot;\t&quot; $6}&#039;&lt;/code&gt;





&lt;code&gt;ps auxwww &#124; grep daemon &#124; grep -v grep &#124; awk &#039;{print $11}&#039;&lt;/code&gt;

&lt;code&gt;cat /home/girish/script/ReportTool/user/letmeuse.2009-02-05 &#124; cut -f1 &#124; awk &#039;{print substr($1,1,6)}&#039;&#124; sort -nr&lt;/code&gt;


SUBSTR ka BAAP :: 
&lt;code&gt;cat /home/girish/script/ReportTool/user/letmeuse.2009-02-05 &#124; cut -c1-6 &#124; awk &#039;{print $1,&quot;=&quot;,$2,&quot;,&quot;,$3}&#039;&lt;/code&gt;

mitLOAD DATA LOCAL INFILE &#039;/tmp/tbl_change_2.sql&#039; INTO TABLE &#039;tbl_operator_ip&#039; FIELDS TERMINATED BY &#039;\t&#039; LINES TERMINATED BY &#039;\n&#039;;


To Read Key And Value from the properties file........

&lt;code&gt;KEY VALUE ::  tail -1 temp &#124;awk -F= &#039;END { printf &quot;keys=%s\nvalues=%s\n&quot;, k, v }
{ k = k ? k s $1 : $1; v = v ? v s $2 : $2 }
&#039; s=&quot;&#124;&quot; 
keys=CUMULATIVE
values=100&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>More to add&#8211;<br />
AWK</p>
<p>ACCESS LOG OPERATION &#8212; AWK</p>
<p><code>tail -10 access_log.2009-01-19 | awk '/go/ { print $13 }'</code></p>
<p>it will grep the /go/ apps and cut the 13 th delem&#8217;s &#8230;. isnt its great !<br />
***********************<br />
Rogers 87 100 95<br />
Lambchop 66 89 76<br />
Barney 12 36 27</p>
<p>You can perform calculations like this:</p>
<p><code>awk '{print "Avg for",$1,"is",($2+$3+$4)/3}' grades.data</code><br />
Avg for Rogers is 94<br />
Avg for Lambchop is 77<br />
Avg for Barney is 25</p>
<p>*********************</p>
<p><code>cat access_log.2009-01-19  | grep $1 | cut -f13 -d" "|  awk '{ request += $1 } END { print request }'</code></p>
<p><code> ll -R . | grep "jpg\\|mp4\\|3gp\\|gif" | grep "Apr\\|May\\|Jun" | awk '{print $5"\t" $6}'</code></p>
<p><code>ps auxwww | grep daemon | grep -v grep | awk '{print $11}'</code></p>
<p><code>cat /home/girish/script/ReportTool/user/letmeuse.2009-02-05 | cut -f1 | awk '{print substr($1,1,6)}'| sort -nr</code></p>
<p>SUBSTR ka BAAP ::<br />
<code>cat /home/girish/script/ReportTool/user/letmeuse.2009-02-05 | cut -c1-6 | awk '{print $1,"=",$2,",",$3}'</code></p>
<p>mitLOAD DATA LOCAL INFILE &#8216;/tmp/tbl_change_2.sql&#8217; INTO TABLE &#8216;tbl_operator_ip&#8217; FIELDS TERMINATED BY &#8216;\t&#8217; LINES TERMINATED BY &#8216;\n&#8217;;</p>
<p>To Read Key And Value from the properties file&#8230;&#8230;..</p>
<p><code>KEY VALUE ::  tail -1 temp |awk -F= 'END { printf "keys=%s\nvalues=%s\n", k, v }<br />
{ k = k ? k s $1 : $1; v = v ? v s $2 : $2 }<br />
' s="|"<br />
keys=CUMULATIVE<br />
values=100</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandeep k pandey</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-149566</link>
		<dc:creator>sandeep k pandey</dc:creator>
		<pubDate>Sun, 19 Jul 2009 04:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-149566</guid>
		<description>hiii i am sandeep 
i want to say you thanks</description>
		<content:encoded><![CDATA[<p>hiii i am sandeep<br />
i want to say you thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kas@hil</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-149282</link>
		<dc:creator>kas@hil</dc:creator>
		<pubDate>Thu, 02 Jul 2009 10:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-149282</guid>
		<description>Very usuefull information.</description>
		<content:encoded><![CDATA[<p>Very usuefull information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaunak Bangale</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-148882</link>
		<dc:creator>Shaunak Bangale</dc:creator>
		<pubDate>Tue, 09 Jun 2009 13:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-148882</guid>
		<description>Thanks for the collection..With this,It is inspiratory for a beginner to learn linux commands..</description>
		<content:encoded><![CDATA[<p>Thanks for the collection..With this,It is inspiratory for a beginner to learn linux commands..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dante</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145717</link>
		<dc:creator>dante</dc:creator>
		<pubDate>Tue, 25 Nov 2008 00:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145717</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: goestin</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145555</link>
		<dc:creator>goestin</dc:creator>
		<pubDate>Tue, 11 Nov 2008 16:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145555</guid>
		<description>Very very nice indeed, especially #1 howto vpn over ssh: brilliant!

tnx a lot!</description>
		<content:encoded><![CDATA[<p>Very very nice indeed, especially #1 howto vpn over ssh: brilliant!</p>
<p>tnx a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145519</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Fri, 07 Nov 2008 17:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145519</guid>
		<description>i personally learn by break &amp; fix (obviously on a dev) big learning curve, my first intro to linux was gentoo</description>
		<content:encoded><![CDATA[<p>i personally learn by break &amp; fix (obviously on a dev) big learning curve, my first intro to linux was gentoo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Agarwal</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145511</link>
		<dc:creator>Amit Agarwal</dc:creator>
		<pubDate>Fri, 07 Nov 2008 02:29:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145511</guid>
		<description>Very good info. But I think you should have also mentioned some of the most popular blogs, I think that is the best way to learn Unix/Linux.</description>
		<content:encoded><![CDATA[<p>Very good info. But I think you should have also mentioned some of the most popular blogs, I think that is the best way to learn Unix/Linux.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145504</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Thu, 06 Nov 2008 15:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145504</guid>
		<description>Hey, some of your screenshots got mp3 player; otherwise a good collection of cheat sheets.</description>
		<content:encoded><![CDATA[<p>Hey, some of your screenshots got mp3 player; otherwise a good collection of cheat sheets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jadu</title>
		<link>http://www.cyberciti.biz/tips/linux-unix-commands-cheat-sheets.html#comment-145500</link>
		<dc:creator>Jadu</dc:creator>
		<pubDate>Thu, 06 Nov 2008 12:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=3380#comment-145500</guid>
		<description>great info; most of the books you mentioned are useful.</description>
		<content:encoded><![CDATA[<p>great info; most of the books you mentioned are useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.190 seconds -->
