<?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>Flavio Castelli &#187; bash</title>
	<atom:link href="http://flavio.castelli.name/category/programming/bash/feed" rel="self" type="application/rss+xml" />
	<link>http://flavio.castelli.name</link>
	<description>debugging my life</description>
	<lastBuildDate>Fri, 20 Jan 2012 08:27:36 +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>Svn cleaner</title>
		<link>http://flavio.castelli.name/svn-cleaner</link>
		<comments>http://flavio.castelli.name/svn-cleaner#comments</comments>
		<pubDate>Tue, 14 Feb 2006 23:17:23 +0000</pubDate>
		<dc:creator>Flavio</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.flavio.castelli.name/svn-cleaner/</guid>
		<description><![CDATA[This simple program removes recursively all .svn directories. Requirements: In order to run remove-svn requires python. Synopsis: remove-svn syntax is: remove-svn dir in this way remove-svn will recursively remove all .svn directories found under dir. An example: remove-svn `pwd` UPDATE A faster way for removing .svn file through this simple bash command: find ./ -name [...]]]></description>
			<content:encoded><![CDATA[<p>This simple program removes recursively all .svn directories.<br />
<span id="more-58"></span><br />
<strong>Requirements:</strong><br />
In order to run <em>remove-svn</em> requires python.</p>
<p><strong>Synopsis:</strong><br />
<em>remove-svn</em> syntax is:<br />
<code>remove-svn dir</code><br />
in this way remove-svn will recursively remove all <em>.svn</em> directories found under dir.</p>
<p>An example:<br />
<code>remove-svn `pwd`</code></p>
<p><strong>UPDATE</strong><br />
A faster way for removing <em>.svn</em> file through this simple bash command:<br />
<code>find ./ -name *svn* | xargs rm -rf</code></p>
<p>The old script has been removed.</p>
]]></content:encoded>
			<wfw:commentRss>http://flavio.castelli.name/svn-cleaner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto edit multime id3 tags from command line</title>
		<link>http://flavio.castelli.name/howto-edit-multime-id3-tags-from-command-line</link>
		<comments>http://flavio.castelli.name/howto-edit-multime-id3-tags-from-command-line#comments</comments>
		<pubDate>Thu, 08 Dec 2005 17:45:39 +0000</pubDate>
		<dc:creator>Flavio</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.flavio.castelli.name/howto-edit-multime-id3-tags-from-command-line/</guid>
		<description><![CDATA[Goal id3medit is a simple script for tagging all mp3/ogg files present in a directory. Requirements: id3medit relies on id3v2, a command-line tool for editing id3v2 tags file names must be in format: &#8216;## &#8211; trackname.ext&#8217;. Where ## is track&#8217;s number, and ext is file&#8217;s extension (mp3 or ogg in case insensitive format) Synopsis: id3medit [...]]]></description>
			<content:encoded><![CDATA[<h3>Goal</h3>
<p>id3medit is a simple script for tagging all mp3/ogg files present in a directory.<br />
<span id="more-28"></span></p>
<h3>Requirements:</h3>
<p>id3medit relies on id3v2, a command-line tool for editing id3v2 tags<br />
file names must be in format: <em>&#8216;## &#8211; trackname.ext&#8217;</em>. Where <em>##</em> is track&#8217;s number, and <em>ext</em> is file&#8217;s extension (mp3 or ogg in case insensitive format)</p>
<h3>Synopsis:</h3>
<p>id3medit syntax is:<br />
<code>id3medit artist album year(*) genre(*)</code><br />
Where <em>*</em> denotes optional arguments<br />
You can obtain genre identification number in this way:<br />
<code>id3v2 -L | grep -i genre</code></p>
<h3>Example</h3>
<pre>
<code>id3v2 -L | grep -i rock
 
   1: Classic Rock
  17: Rock
  40: Alt. Rock
  47: Instrum. Rock
  56: Southern Rock
  78: Rock &amp; Roll
  79: Hard Rock
  81: Folk/Rock
  91: Gothic Rock
  92: Progress. Rock
  93: Psychadel. Rock
  94: Symphonic Rock 
  95: Slow Rock
 121: Punk Rock
 141: Christian Rock</code>
</pre>
<h3>Download</h3>
<p><a href='http://www.flavio.castelli.name/wp-content/uploads/2007/11/id3medit' title='id3medit'>id3medit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flavio.castelli.name/howto-edit-multime-id3-tags-from-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

