<?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>nesiumdotcom &#187; One-Liner</title>
	<atom:link href="http://www.nesium.com/blog/category/one-liner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nesium.com/blog</link>
	<description>Domesticating robots since, well, quite a while</description>
	<lastBuildDate>Mon, 11 Oct 2010 13:47:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Rename files with bash and regular expressions</title>
		<link>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2008%2F01%2F30%2Frename-files-with-bash-and-regular-expressions%2F&#038;seed_title=Rename+files+with+bash+and+regular+expressions</link>
		<comments>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2008%2F01%2F30%2Frename-files-with-bash-and-regular-expressions%2F&#038;seed_title=Rename+files+with+bash+and+regular+expressions#comments</comments>
		<pubDate>Wed, 30 Jan 2008 17:38:26 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[One-Liner]]></category>

		<guid isPermaLink="false">http://www.nesium.com/blog/2008/01/30/rename-files-with-bash-and-regular-expressions/</guid>
		<description><![CDATA[for i in *.*; do j=`echo $i &#124; sed 's/abc_\(.*\)\.jpg/def_\1.jpg/g'`; mv &#34;$i&#34; &#34;$j&#34;; done Download this script this example would rename the files abc_001.jpg, abc_002.jpg, ... to def_001.jpg, def_002.jpg ...]]></description>
		<wfw:commentRss>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2008%2F01%2F30%2Frename-files-with-bash-and-regular-expressions%2F&#038;seed_title=Rename+files+with+bash+and+regular+expressions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Remove .svn files with bash</title>
		<link>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F05%2F27%2Fremove-svn-files-with-bash%2F&#038;seed_title=Remove+.svn+files+with+bash</link>
		<comments>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F05%2F27%2Fremove-svn-files-with-bash%2F&#038;seed_title=Remove+.svn+files+with+bash#comments</comments>
		<pubDate>Sun, 27 May 2007 13:41:23 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[One-Liner]]></category>
		<category><![CDATA[Real World Problems]]></category>

		<guid isPermaLink="false">http://www.nesium.com/blog/2007/05/27/remove-svn-files-with-bash/</guid>
		<description><![CDATA[Just a quick reminder, since I always forget this one ... find . -name .svn -exec rm -rf &#123;&#125; \; Download this script]]></description>
		<wfw:commentRss>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F05%2F27%2Fremove-svn-files-with-bash%2F&#038;seed_title=Remove+.svn+files+with+bash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Delete files older than 30 days</title>
		<link>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F02%2F20%2Fdelete-files-older-than-30-days%2F&#038;seed_title=Delete+files+older+than+30+days</link>
		<comments>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F02%2F20%2Fdelete-files-older-than-30-days%2F&#038;seed_title=Delete+files+older+than+30+days#comments</comments>
		<pubDate>Mon, 19 Feb 2007 23:00:57 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[One-Liner]]></category>

		<guid isPermaLink="false">http://www.nesium.com/blog/2007/02/20/delete-files-older-than-30-days/</guid>
		<description><![CDATA[This one will keep your temporary directories clean #!/bin/bash &#160; # deletes only files older than 30 days find /path/to/tmpfolder/ -type f -mtime +30 &#124; xargs rm Download this script it recursively deletes files (not folders) older than 30 days]]></description>
		<wfw:commentRss>http://nesium.com/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fwww.nesium.com%2Fblog%2F2007%2F02%2F20%2Fdelete-files-older-than-30-days%2F&#038;seed_title=Delete+files+older+than+30+days/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

