<?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>Postpostmodern &#187; Terminal</title>
	<atom:link href="http://postpostmodern.com/tag/terminal/feed/" rel="self" type="application/rss+xml" />
	<link>http://postpostmodern.com</link>
	<description>Speaking of web development.</description>
	<lastBuildDate>Tue, 08 Jun 2010 18:46:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Terminal Tip: Delete Those Mac Dot Files</title>
		<link>http://postpostmodern.com/instructional/terminal-tip-delete-those-mac-dot-files/</link>
		<comments>http://postpostmodern.com/instructional/terminal-tip-delete-those-mac-dot-files/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 16:40:32 +0000</pubDate>
		<dc:creator>Jason Johnson</dc:creator>
				<category><![CDATA[Instructional]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://postpostmodern.com/?p=396</guid>
		<description><![CDATA[Use the find command to delete all of the ._* and .DS_Store files.]]></description>
			<content:encoded><![CDATA[<p>Unzipping/untaring an archive that was created on a Mac can produce a lot of ._blah and .DS_Store files. Rid yourself of them with:</p>

<p><kbd class="block">find . &#92;( -name '._*' -o -name '.DS_Store' &#92;)  -exec rm {} \;</kbd></p>

<p>or, if you&#8217;re using GNU find (e.g. on Ubuntu) you can use <code>-delete</code>:</p>

<p><kbd class="block">find . &#92;( -name '._*' -o -name '.DS_Store' &#92;)  -delete</kbd></p>
]]></content:encoded>
			<wfw:commentRss>http://postpostmodern.com/instructional/terminal-tip-delete-those-mac-dot-files/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
