<?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>/dev/movabletripe &#187; Bash</title>
	<atom:link href="http://movabletripe.com/category/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://movabletripe.com</link>
	<description>Making up launch dates since 1982</description>
	<lastBuildDate>Mon, 27 Aug 2007 01:39:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I got 99 problems but a bitch ain&#8217;t one!</title>
		<link>http://movabletripe.com/archive/i-got-99-problems-but-a-bitch-aint-one/</link>
		<comments>http://movabletripe.com/archive/i-got-99-problems-but-a-bitch-aint-one/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 09:30:41 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://movabletripe.com/archive/i-got-99-problems-but-a-bitch-aint-one/</guid>
		<description><![CDATA[#!/bin/bash

if [ -f girlproblems.txt ]
then
  FEELINGS="bad"
  PROBLEMS=`cat myproblems.txt &#124; wc -l`
  if [ $PROBLEMS == "99" ]
  then
    BITCHES=`cat myproblems.txt &#124; grep bitch &#124; wc -l`
    if [ $BITCHES == "0" ]
      then
      echo "a [...]]]></description>
			<content:encoded><![CDATA[<blockquote><pre>#!/bin/bash

if [ -f girlproblems.txt ]
then
  FEELINGS="bad"
  PROBLEMS=`cat myproblems.txt | wc -l`
  if [ $PROBLEMS == "99" ]
  then
    BITCHES=`cat myproblems.txt | grep bitch | wc -l`
    if [ $BITCHES == "0" ]
      then
      echo "a bitch ain't one!"
    fi
  fi
fi</pre>
</blockquote>
<p>Too many glasses of scotch will do that to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://movabletripe.com/archive/i-got-99-problems-but-a-bitch-aint-one/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Grep all files in a directory for a string</title>
		<link>http://movabletripe.com/archive/grep-all-files-in-a-directory-for-a-string/</link>
		<comments>http://movabletripe.com/archive/grep-all-files-in-a-directory-for-a-string/#comments</comments>
		<pubDate>Sat, 30 Jun 2007 03:21:38 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://movabletripe.com/archive/grep-all-files-in-a-directory-for-a-string/</guid>
		<description><![CDATA[grep -i -r somestring ./
-i means ignore case
-r means recursive
Simple stuff, but useful nonetheless.
]]></description>
			<content:encoded><![CDATA[<p><code>grep -i -r somestring ./</code></p>
<p>-i means ignore case<br />
-r means recursive</p>
<p>Simple stuff, but useful nonetheless.</p>
]]></content:encoded>
			<wfw:commentRss>http://movabletripe.com/archive/grep-all-files-in-a-directory-for-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
