<?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>Ali Abbas &#187; Bash</title>
	<atom:link href="http://alouche.net/blog/category/programming/bash-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://alouche.net/blog</link>
	<description>Unix - Networking - News</description>
	<lastBuildDate>Sun, 11 Jul 2010 17:05:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Check your IP periodically with a small shell script</title>
		<link>http://alouche.net/blog/2009/07/02/check-your-ip-periodically-with-a-small-shell-script/</link>
		<comments>http://alouche.net/blog/2009/07/02/check-your-ip-periodically-with-a-small-shell-script/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 10:14:22 +0000</pubDate>
		<dc:creator>Ali Abbas</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://alouche.net/?p=364</guid>
		<description><![CDATA[For those who are subject to dynamically assigned DSL IP, you would probably be familiar with a site such as http://myip.dk Here is a small script I use to fetch my public IP for other script processes updated &#8220;due to changes on the site myip.dk, I rewrote the script&#8221; #!/bin/bash link=`lynx -dump -listonly &#8216;http://myip.dk&#8217; &#124; [...]]]></description>
		<wfw:commentRss>http://alouche.net/blog/2009/07/02/check-your-ip-periodically-with-a-small-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Script to monitor a process</title>
		<link>http://alouche.net/blog/2008/10/22/quick-script-to-monitor-a-process/</link>
		<comments>http://alouche.net/blog/2008/10/22/quick-script-to-monitor-a-process/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 11:44:25 +0000</pubDate>
		<dc:creator>Ali Abbas</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Unix / Linux]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://alouche.net/?p=59</guid>
		<description><![CDATA[There are numerous programs such as monit which are widely used as to monitor processes and take certain actions in case of different events. Here is a little tip as to quickly monitor an service/process if you aren&#8217;t wanting to go through the hassle to configure monit #!/bin/bash r=$(ps cax &#124;grep -c NAME_PROCESS) if [ [...]]]></description>
		<wfw:commentRss>http://alouche.net/blog/2008/10/22/quick-script-to-monitor-a-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete empty files, older than x days</title>
		<link>http://alouche.net/blog/2008/10/11/delete-empty-files-older-than-x-days/</link>
		<comments>http://alouche.net/blog/2008/10/11/delete-empty-files-older-than-x-days/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 14:57:06 +0000</pubDate>
		<dc:creator>Ali Abbas</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Unix / Linux]]></category>
		<category><![CDATA[faq]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://alouche.net/?p=41</guid>
		<description><![CDATA[Q: How do I delete files that older than a certain amount of days and which are empty A: find . -empty -type f -mmtime +X &#124; xargs rm or for those fancing exec, use find . -empty -type f -mmtime +X -exec rm {} ** X must be replaced with the number of days [...]]]></description>
		<wfw:commentRss>http://alouche.net/blog/2008/10/11/delete-empty-files-older-than-x-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->