<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/awk</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Fri, 24 May 2013 13:08:26 GMT</pubDate>
<item>
<title>(Awk) Command+to+insert+tab+space - kaartz</title>
<link>http://snipplr.com/view/65417/commandtoinserttabspace/</link>
<description><![CDATA[ <p>Using this command you can insert tab spaces/columns to a tab separated file.</p> ]]></description>
<pubDate>Wed, 06 Jun 2012 05:00:44 GMT</pubDate>
<guid>http://snipplr.com/view/65417/commandtoinserttabspace/</guid>
</item>
<item>
<title>(Awk) Listing directiories in shell - ef</title>
<link>http://snipplr.com/view/63475/listing-directiories-in-shell/</link>
<description><![CDATA[ <p>Command list subdirectories in current directory.</p> ]]></description>
<pubDate>Tue, 21 Feb 2012 19:18:22 GMT</pubDate>
<guid>http://snipplr.com/view/63475/listing-directiories-in-shell/</guid>
</item>
<item>
<title>(Awk) check jar versions - 4fthawaiian</title>
<link>http://snipplr.com/view/55189/check-jar-versions/</link>
<description><![CDATA[ <p>This is some ugly-ass code, but it works to see if you need to update the atlassian jira jars. Meant to be in /opt/j2ee/domains/domainname.com/instance/tomcat/lib/newdir</p> ]]></description>
<pubDate>Mon, 13 Jun 2011 04:55:50 GMT</pubDate>
<guid>http://snipplr.com/view/55189/check-jar-versions/</guid>
</item>
<item>
<title>(Awk) ls octal chmod out - mladoux</title>
<link>http://snipplr.com/view/55181/ls-octal-chmod-out/</link>
<description><![CDATA[ <p>Simple script to output chmod permissions in octal. Good for learning environments, and security troubleshooting. I didn't write this one, I picked up from a friend and he didn't write it either.</p> ]]></description>
<pubDate>Sun, 12 Jun 2011 19:41:51 GMT</pubDate>
<guid>http://snipplr.com/view/55181/ls-octal-chmod-out/</guid>
</item>
<item>
<title>(Awk) arabic2roman() - TopcatSoftware</title>
<link>http://snipplr.com/view/46802/arabic2roman/</link>
<description><![CDATA[ <p>Simple arabic to roman numeral conversion in awk</p> ]]></description>
<pubDate>Sun, 09 Jan 2011 05:20:59 GMT</pubDate>
<guid>http://snipplr.com/view/46802/arabic2roman/</guid>
</item>
<item>
<title>(Awk) rot13x() - TopcatSoftware</title>
<link>http://snipplr.com/view/46800/rot13x/</link>
<description><![CDATA[ <p>rot13 for awk, extended to include digits</p> ]]></description>
<pubDate>Sun, 09 Jan 2011 05:05:26 GMT</pubDate>
<guid>http://snipplr.com/view/46800/rot13x/</guid>
</item>
<item>
<title>(Awk) GUI for AWK Scripts in Windows - TopcatSoftware</title>
<link>http://snipplr.com/view/46798/gui-for-awk-scripts-in-windows/</link>
<description><![CDATA[ <p>Quick &amp; dirty gui for awk scripts under Windows using an 'HTA' (hyper text application)</p> ]]></description>
<pubDate>Sun, 09 Jan 2011 04:53:48 GMT</pubDate>
<guid>http://snipplr.com/view/46798/gui-for-awk-scripts-in-windows/</guid>
</item>
<item>
<title>(Awk) xorEncode() - TopcatSoftware</title>
<link>http://snipplr.com/view/46797/xorencode/</link>
<description><![CDATA[ <p>xor encryption for gawk.</p> ]]></description>
<pubDate>Sun, 09 Jan 2011 04:43:51 GMT</pubDate>
<guid>http://snipplr.com/view/46797/xorencode/</guid>
</item>
<item>
<title>(Awk) GC-freq.awk - cruelfate</title>
<link>http://snipplr.com/view/46709/gcfreqawk/</link>
<description><![CDATA[ <p>Parse Java stdout (or .out log) and print GC frequency per minute.   Assumes following JVM flags are set:

 -XX:+PrintGCDetails
 -XX:+PrintGCTimeStamps 
-verbose:gc</p> ]]></description>
<pubDate>Fri, 07 Jan 2011 05:15:06 GMT</pubDate>
<guid>http://snipplr.com/view/46709/gcfreqawk/</guid>
</item>
<item>
<title>(Awk) Sort Directories by Size (Human Readable) - nohn</title>
<link>http://snipplr.com/view/40758/sort-directories-by-size-human-readable/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 19 Sep 2010 19:09:27 GMT</pubDate>
<guid>http://snipplr.com/view/40758/sort-directories-by-size-human-readable/</guid>
</item>
<item>
<title>(Awk) Merge lines with Awk - bubnoff</title>
<link>http://snipplr.com/view/38514/merge-lines-with-awk/</link>
<description><![CDATA[ <p>For use in bash script. First two lines are an example of usage. This is one of several solutions to this problem. Works well for cleaning database output. Takes a regex and two files as arguments - first one is raw db output - second is merged output.This assumes unwanted line breaks. You can also get the same results working with the newline characters -- will post that one as well. The --re-interval option is only necessary if you want to enable regex interval operators like {n} or {n,m} ....etc. If using a current version of GNU Awk, might as well leave it in there.</p> ]]></description>
<pubDate>Thu, 05 Aug 2010 10:17:50 GMT</pubDate>
<guid>http://snipplr.com/view/38514/merge-lines-with-awk/</guid>
</item>
<item>
<title>(Awk) transpose rows and columns with awk - evertwh</title>
<link>http://snipplr.com/view/29998/transpose-rows-and-columns-with-awk/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 18 Mar 2010 22:32:28 GMT</pubDate>
<guid>http://snipplr.com/view/29998/transpose-rows-and-columns-with-awk/</guid>
</item>
</channel>
</rss>