<?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>subogero linux blog &#187; space</title>
	<atom:link href="http://linux.subogero.com/tag/space/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.subogero.com</link>
	<description>#!/bin/bash</description>
	<lastBuildDate>Thu, 01 Jan 2015 17:57:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bulk Rename &#8211; Replace Space with Underscore</title>
		<link>http://linux.subogero.com/320/bulk-rename-replace-space-with-underscore/</link>
		<comments>http://linux.subogero.com/320/bulk-rename-replace-space-with-underscore/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 17:59:50 +0000</pubDate>
		<dc:creator>subogero</dc:creator>
				<category><![CDATA[posts]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[rename]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[underscore]]></category>

		<guid isPermaLink="false">http://linux.subogero.com/?p=320</guid>
		<description><![CDATA[A small script to perform bulk renaming of files, replacing spaces with underscores and exotic letters with sanitized versions.
Save this link as /usr/bin/s2u.
#!/bin/sh
ls -1 &#124; while read -r FILE; do
  mv -v "$FILE" `echo $FILE &#124; tr ' áéíóöïúü' '_aeiooouu'`;
done
]]></description>
		<wfw:commentRss>http://linux.subogero.com/320/bulk-rename-replace-space-with-underscore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
