<?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>fast &#8211; VeriTeknik</title>
	<atom:link href="https://www.veriteknik.net.tr/en/tag/fast/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.veriteknik.net.tr/en/</link>
	<description>VeriTeknik Bilişim &#124; VeriTeknik Bilişim</description>
	<lastBuildDate>Mon, 12 May 2014 23:41:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>A faster way to delete files</title>
		<link>https://www.veriteknik.net.tr/en/faster-way-delete-files/</link>
					<comments>https://www.veriteknik.net.tr/en/faster-way-delete-files/#respond</comments>
		
		<dc:creator><![CDATA[ckaraca]]></dc:creator>
		<pubDate>Mon, 12 May 2014 23:41:48 +0000</pubDate>
				<category><![CDATA[DirectAdmin]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[exim]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[faster]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[rm]]></category>
		<category><![CDATA[unlink]]></category>
		<guid isPermaLink="false">http://www.plugged.in/?p=963</guid>

					<description><![CDATA[<p>If you are struggling with millions of SPAM messages like me, you should rather use &#8220;find&#8221; instead of &#8220;rm&#8221; while deleting files in a folder. This method is tested to be faster than rm -rf: switch to the folder containing files, in my case: cd /var/spool/exim/ ans start deleting files by typing: find . -maxdepth [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/faster-way-delete-files/">A faster way to delete files</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you are struggling with millions of SPAM messages like me, you should rather use &#8220;find&#8221; instead of &#8220;rm&#8221; while deleting files in a folder. This method is tested to be faster than rm -rf:</p>
<p>switch to the folder containing files, in my case:</p>
<pre class="brush: bash; gutter: true; first-line: 1">cd /var/spool/exim/</pre>
<p>ans start deleting files by typing:</p>
<pre class="brush: bash; gutter: true; first-line: 1">find . -maxdepth 1 -type f -delete</pre>
<p>you can track the number of remaining files easily by tiping the below command from another terminal: (cd to same directory)</p>
<pre class="brush: bash; gutter: true; first-line: 1">find . -maxdepth 1 -type f | wc -l</pre>
<p>..</p>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/faster-way-delete-files/">A faster way to delete files</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.veriteknik.net.tr/en/faster-way-delete-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">963</post-id>	</item>
	</channel>
</rss>
