<?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>Why So Scared &#187; terminal</title>
	<atom:link href="http://www.whysoscared.com/tag/terminal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whysoscared.com</link>
	<description>A blog about; Programming, Music and Random Stuff</description>
	<lastBuildDate>Thu, 10 Jun 2010 02:43:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Terminal Command Mac Create RAR Archives</title>
		<link>http://www.whysoscared.com/terminal-command-mac-create-rar-archives/</link>
		<comments>http://www.whysoscared.com/terminal-command-mac-create-rar-archives/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 21:47:59 +0000</pubDate>
		<dc:creator>Juo</dc:creator>
				<category><![CDATA[tidbit]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.whysoscared.com/?p=298</guid>
		<description><![CDATA[If you want to pack your files into RAR&#8217;s then use this simple Terminal command
rar a -v100000 MySplitRarArchive
rar a -v100000 MySplitRarArchive
where -vxx is the file size of each of the RAR files in kb&#8217;s

]]></description>
			<content:encoded><![CDATA[<p>If you want to pack your files into RAR&#8217;s then use this simple Terminal command</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">rar a -v100000 MySplitRarArchive</div>
<blockquote><p>rar a -v100000 MySplitRarArchive</p></blockquote>
<p>where -vxx is the file size of each of the RAR files in kb&#8217;s</p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.whysoscared.com/terminal-command-mac-create-rar-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Rename Suffixes or Prefixes Terminal</title>
		<link>http://www.whysoscared.com/batch-rename-suffixes-prefixes-terminal/</link>
		<comments>http://www.whysoscared.com/batch-rename-suffixes-prefixes-terminal/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 23:25:24 +0000</pubDate>
		<dc:creator>Juo</dc:creator>
				<category><![CDATA[tidbit]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.whysoscared.com/?p=160</guid>
		<description><![CDATA[Someone on a forum I regular asked how to batch rename suffixes within the terminal.
So The filenames;
filename.rar
filename2.rar
filename3.rar
Could have a suffix added like this;
filename_[sitename].rar
filename2_[sitename].rar
filename3_[sitename].rar
Suffix
for i in *.rar; do mv &#8220;$i&#8221; &#8220;`basename $i .rar`_[sitename].rar&#8221;; done

Prefix
find *.rar -exec mv {} [sitename]_{} \;
]]></description>
			<content:encoded><![CDATA[<p>Someone on a forum I regular asked how to batch rename suffixes within the terminal.</p>
<p>So The filenames;<br />
filename.rar<br />
filename2.rar<br />
filename3.rar</p>
<p>Could have a suffix added like this;<br />
filename_[sitename].rar<br />
filename2_[sitename].rar<br />
filename3_[sitename].rar</p>
<h4>Suffix</h4>
<blockquote><p>for i in *.rar; do mv &#8220;$i&#8221; &#8220;`basename $i .rar`_[sitename].rar&#8221;; done
</p></blockquote>
<h4>Prefix</h4>
<blockquote><p>find *.rar -exec mv {} [sitename]_{} \;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.whysoscared.com/batch-rename-suffixes-prefixes-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
