<?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: Change quality of lots of images by one click :: linux</title>
	<atom:link href="http://tech.karolzielinski.com/change-quality-of-lots-of-images-by-one-click-linux/feed" rel="self" type="application/rss+xml" />
	<link>http://tech.karolzielinski.com/change-quality-of-lots-of-images-by-one-click-linux</link>
	<description>... because from time to time I&#039;m a web developer, too</description>
	<lastBuildDate>Wed, 28 Jul 2010 10:20:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Mike</title>
		<link>http://tech.karolzielinski.com/change-quality-of-lots-of-images-by-one-click-linux/comment-page-1#comment-11</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 23 Aug 2009 06:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://tech.karolzielinski.com/?p=88#comment-11</guid>
		<description>You can accomplish the goal of your first example without perl:

for f in *.jpg; do convert $f -quality 80% lowqual-$f; done

I prefer to save them in a new directory instead of messing with the filenames:

mkdir lowqual
for f in *.jpg; do convert $f -quality 80% lowqual/$f; done

When you don&#039;t need the originals, just use mogrify:

mogrify -quality 80% *.jpg</description>
		<content:encoded><![CDATA[<p>You can accomplish the goal of your first example without perl:</p>
<p>for f in *.jpg; do convert $f -quality 80% lowqual-$f; done</p>
<p>I prefer to save them in a new directory instead of messing with the filenames:</p>
<p>mkdir lowqual<br />
for f in *.jpg; do convert $f -quality 80% lowqual/$f; done</p>
<p>When you don&#8217;t need the originals, just use mogrify:</p>
<p>mogrify -quality 80% *.jpg</p>
]]></content:encoded>
	</item>
</channel>
</rss>
