<?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>Evolution Systems &#187; PDF</title>
	<atom:link href="http://evolution-systems.co.uk/tag/pdf/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolution-systems.co.uk</link>
	<description>Web Development, Software Development and Linux Consultancy services</description>
	<lastBuildDate>Fri, 08 Aug 2025 09:18:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Image File Conversion Script</title>
		<link>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/</link>
		<comments>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 14:45:34 +0000</pubDate>
		<dc:creator><![CDATA[Matthew Jakeman]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Matts Blog]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[JPG]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://evolution-systems.co.uk/?p=612</guid>
		<description><![CDATA[Here&#8217;s a nice simple script to convert all the pdf files in a directory to jpg files using the convert program. To use this you will need ImageMagick installed on your Linux/Unix host.]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a nice simple script to convert all the pdf files in a directory to jpg files using the convert program. To use this you will need ImageMagick installed on your Linux/Unix host.</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash

for file in `ls *.pdf`
do
   convert $file `echo $file | sed 's/\.pdf$/\.jpg/'`
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://evolution-systems.co.uk/2011/01/12/image-file-conversion-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
