<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Moving files to trash from the Mac command line</title>
	<atom:link href="http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/</link>
	<description>Ceci n&#039;est pas un blog</description>
	<lastBuildDate>Mon, 02 Jan 2012 21:09:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Anthony</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-13182</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 06 Nov 2008 10:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-13182</guid>
		<description>Excellent - thanks! I&#039;ve re-written the bash version accordingly.</description>
		<content:encoded><![CDATA[<p>Excellent - thanks! I've re-written the bash version accordingly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: icke</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-13181</link>
		<dc:creator>icke</dc:creator>
		<pubDate>Thu, 06 Nov 2008 10:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-13181</guid>
		<description>Simply use &quot;$@&quot; (with double quotes!) in your for loop.</description>
		<content:encoded><![CDATA[<p>Simply use "$@" (with double quotes!) in your for loop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-13163</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Wed, 05 Nov 2008 22:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-13163</guid>
		<description>Thanks - that solves the spaces problem, but it doesn&#039;t let you delete several files at once (&#039;trash *.txt&#039; or &#039;trash file1 file2&#039; etc). I&#039;m sure there&#039;s a way to do it though...</description>
		<content:encoded><![CDATA[<p>Thanks - that solves the spaces problem, but it doesn't let you delete several files at once ('trash *.txt' or 'trash file1 file2' etc). I'm sure there's a way to do it though...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: icke</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-13162</link>
		<dc:creator>icke</dc:creator>
		<pubDate>Wed, 05 Nov 2008 14:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-13162</guid>
		<description>No spaces problem with:

function trash {
  osascript -e &quot;tell application \&quot;Finder\&quot;&quot; -e &quot;delete POSIX file \&quot;${PWD}/$*\&quot;&quot; -e &quot;end tell&quot;
}</description>
		<content:encoded><![CDATA[<p>No spaces problem with:</p>
<p>function trash {<br />
  osascript -e "tell application \"Finder\"" -e "delete POSIX file \"${PWD}/$*\"" -e "end tell"<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-10515</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Thu, 03 Jul 2008 13:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-10515</guid>
		<description>Hi again - I&#039;ve found a solution using Python and added it to the original post.</description>
		<content:encoded><![CDATA[<p>Hi again - I've found a solution using Python and added it to the original post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-10454</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Tue, 01 Jul 2008 12:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-10454</guid>
		<description>Hi - you&#039;re right, it doesn&#039;t work when the name has spaces in. There&#039;s probably a solution, but I don&#039;t have one at the moment I&#039;m afraid...

Cheers,
Anthony</description>
		<content:encoded><![CDATA[<p>Hi - you're right, it doesn't work when the name has spaces in. There's probably a solution, but I don't have one at the moment I'm afraid...</p>
<p>Cheers,<br />
Anthony</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kw</title>
		<link>http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/comment-page-1/#comment-10375</link>
		<dc:creator>kw</dc:creator>
		<pubDate>Sun, 29 Jun 2008 01:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.anthonysmith.me.uk/2008/01/08/moving-files-to-trash-from-the-mac-command-line/#comment-10375</guid>
		<description>Is there a way to make this work on files with spaces in the names?</description>
		<content:encoded><![CDATA[<p>Is there a way to make this work on files with spaces in the names?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

