<?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/tags/cli</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 24 Jul 2008 08:00:42 GMT</pubDate>
<item>
<title>(Bash) Quick new tab from iTerm - zingo</title>
<link>http://snipplr.com/view/7451/quick-new-tab-from-iterm/</link>
<description><![CDATA[ <p>Place this in your ~/.bash_profile then type tab in your terminal window to see some magic happen.</p> ]]></description>
<pubDate>Tue, 22 Jul 2008 21:46:31 GMT</pubDate>
<guid>http://snipplr.com/view/7451/quick-new-tab-from-iterm/</guid>
</item>
<item>
<title>(Bash) Sort Directories by Size - zingo</title>
<link>http://snipplr.com/view/7450/sort-directories-by-size/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 22 Jul 2008 21:19:52 GMT</pubDate>
<guid>http://snipplr.com/view/7450/sort-directories-by-size/</guid>
</item>
<item>
<title>(Bash) Words with many doubled letters - zingo</title>
<link>http://snipplr.com/view/7056/words-with-many-doubled-letters/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 01 Jul 2008 19:28:07 GMT</pubDate>
<guid>http://snipplr.com/view/7056/words-with-many-doubled-letters/</guid>
</item>
<item>
<title>(Ruby) Post to Twitter from the shell - noah</title>
<link>http://snipplr.com/view/6594/post-to-twitter-from-the-shell/</link>
<description><![CDATA[ <p>Put this in a file called tweet.rb, then call as follows:
    ruby tweet.rb username "my tweet"

Or you can include your password in the command like so 
    ruby twit.rb username:password "my tweet"

(note that this is hugely insecure as your password will wind up in your .history, not to mention being visible to shouldersurfers).

Updated: if a post is over the 140-character limit, the script prints back the part of the tweet that would not fit.  This makes it easier to trim down overly long posts.</p> ]]></description>
<pubDate>Thu, 05 Jun 2008 09:23:47 GMT</pubDate>
<guid>http://snipplr.com/view/6594/post-to-twitter-from-the-shell/</guid>
</item>
<item>
<title>(Bash) SVN rename all your CakePHP views from thtml to ctp - zingo</title>
<link>http://snipplr.com/view/6485/svn-rename-all-your-cakephp-views-from-thtml-to-ctp/</link>
<description><![CDATA[ <p>Recursively SVN rename (move) all thtml-files to ctp-files .  Fires this up in CakePHPs /views path.</p> ]]></description>
<pubDate>Wed, 28 May 2008 16:34:24 GMT</pubDate>
<guid>http://snipplr.com/view/6485/svn-rename-all-your-cakephp-views-from-thtml-to-ctp/</guid>
</item>
<item>
<title>(Ruby) Ruby Command Line Option Parser - mikegreen</title>
<link>http://snipplr.com/view/6335/ruby-command-line-option-parser/</link>
<description><![CDATA[ <p>Simple command line option parser snippet</p> ]]></description>
<pubDate>Tue, 20 May 2008 03:35:45 GMT</pubDate>
<guid>http://snipplr.com/view/6335/ruby-command-line-option-parser/</guid>
</item>
<item>
<title>(Bash) Dig, without the cruft - cczona</title>
<link>http://snipplr.com/view/6040/dig-without-the-cruft/</link>
<description><![CDATA[ <p>If you pass the +short option to dig, it will give you a really short and sweet answer - just the IP address.

    $ dig fosswire.com +short
    208.113.149.33</p> ]]></description>
<pubDate>Tue, 29 Apr 2008 04:03:42 GMT</pubDate>
<guid>http://snipplr.com/view/6040/dig-without-the-cruft/</guid>
</item>
<item>
<title>(Other) test snipplr snippet - robh</title>
<link>http://snipplr.com/view/6008/test-snipplr-snippet/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 26 Apr 2008 18:56:50 GMT</pubDate>
<guid>http://snipplr.com/view/6008/test-snipplr-snippet/</guid>
</item>
<item>
<title>(Bash) Find all files and directories in project excluding .svn - koncept</title>
<link>http://snipplr.com/view/5894/find-all-files-and-directories-in-project-excluding-svn/</link>
<description><![CDATA[ <p>Simple but useful.</p> ]]></description>
<pubDate>Thu, 17 Apr 2008 06:45:46 GMT</pubDate>
<guid>http://snipplr.com/view/5894/find-all-files-and-directories-in-project-excluding-svn/</guid>
</item>
<item>
<title>(Bash) Emulating a Slow Internet Link for HTTP - zingo</title>
<link>http://snipplr.com/view/5552/emulating-a-slow-internet-link-for-http/</link>
<description><![CDATA[ <p>recover to normal speed with 
/sbin/ipfw delete 100
/sbin/ipfw delete 200
... or reboot</p> ]]></description>
<pubDate>Mon, 24 Mar 2008 22:51:35 GMT</pubDate>
<guid>http://snipplr.com/view/5552/emulating-a-slow-internet-link-for-http/</guid>
</item>
<item>
<title>(SQL) dump mySQL database via command line - madra</title>
<link>http://snipplr.com/view/5524/dump-mysql-database-via-command-line/</link>
<description><![CDATA[ <p>for those times when phpmyadmin fucks up, big style</p> ]]></description>
<pubDate>Fri, 21 Mar 2008 21:54:25 GMT</pubDate>
<guid>http://snipplr.com/view/5524/dump-mysql-database-via-command-line/</guid>
</item>
<item>
<title>(Bash) shopt (shell options) - cczona</title>
<link>http://snipplr.com/view/5393/shopt-shell-options/</link>
<description><![CDATA[ <p>//for options available, see:
http://www.ss64.com/bash/shopt.html</p> ]]></description>
<pubDate>Wed, 12 Mar 2008 20:31:38 GMT</pubDate>
<guid>http://snipplr.com/view/5393/shopt-shell-options/</guid>
</item>
<item>
<title>(Bash) Get Infos on WLAN on OSX - zingo</title>
<link>http://snipplr.com/view/5050/get-infos-on-wlan-on-osx/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 13 Feb 2008 18:14:57 GMT</pubDate>
<guid>http://snipplr.com/view/5050/get-infos-on-wlan-on-osx/</guid>
</item>
<item>
<title>(Bash) Get Infos on Battery on OSX - zingo</title>
<link>http://snipplr.com/view/5049/get-infos-on-battery-on-osx/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 13 Feb 2008 18:11:53 GMT</pubDate>
<guid>http://snipplr.com/view/5049/get-infos-on-battery-on-osx/</guid>
</item>
<item>
<title>(Bash) Get Temperature on OSX - zingo</title>
<link>http://snipplr.com/view/4966/get-temperature-on-osx/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 09 Feb 2008 13:31:27 GMT</pubDate>
<guid>http://snipplr.com/view/4966/get-temperature-on-osx/</guid>
</item>
<item>
<title>(Bash) Find possible plist-Files for an given Application - zingo</title>
<link>http://snipplr.com/view/4368/find-possible-plistfiles-for-an-given-application/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 16 Dec 2007 02:30:43 GMT</pubDate>
<guid>http://snipplr.com/view/4368/find-possible-plistfiles-for-an-given-application/</guid>
</item>
<item>
<title>(Other) AWK more of it - willcodeforfood</title>
<link>http://snipplr.com/view/4366/awk-more-of-it/</link>
<description><![CDATA[ <p>http://snippets.dzone.com/posts/show/4893</p> ]]></description>
<pubDate>Sun, 16 Dec 2007 01:23:37 GMT</pubDate>
<guid>http://snipplr.com/view/4366/awk-more-of-it/</guid>
</item>
<item>
<title>(Other) How-To: Find files on your computer with find - willcodeforfood</title>
<link>http://snipplr.com/view/4363/howto-find-files-on-your-computer-with-find/</link>
<description><![CDATA[ <p>http://www.debuntu.org/how-to-find-files-on-your-computer-with-find</p> ]]></description>
<pubDate>Sun, 16 Dec 2007 01:08:14 GMT</pubDate>
<guid>http://snipplr.com/view/4363/howto-find-files-on-your-computer-with-find/</guid>
</item>
<item>
<title>(SQL) Generate Simple Bar Charts From a MySQL Prompt - zingo</title>
<link>http://snipplr.com/view/3934/generate-simple-bar-charts-from-a-mysql-prompt/</link>
<description><![CDATA[ <p>You can generate a simple bar chart of the values by executing this command...</p> ]]></description>
<pubDate>Fri, 19 Oct 2007 00:40:13 GMT</pubDate>
<guid>http://snipplr.com/view/3934/generate-simple-bar-charts-from-a-mysql-prompt/</guid>
</item>
<item>
<title>(Bash) List all application versions - zingo</title>
<link>http://snipplr.com/view/3467/list-all-application-versions/</link>
<description><![CDATA[ <p>List the current version and installation date of every application on a OS X system, using of Spotlight.</p> ]]></description>
<pubDate>Sun, 05 Aug 2007 20:14:51 GMT</pubDate>
<guid>http://snipplr.com/view/3467/list-all-application-versions/</guid>
</item>
</channel>
</rss>