<?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: 5 Ways to Empty or Delete a Large File Content in Linux	</title>
	<atom:link href="https://www.tecmint.com/empty-delete-file-content-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/empty-delete-file-content-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 27 Jul 2023 04:58:27 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-2039296</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 27 Jul 2023 04:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23653#comment-2039296</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-2039106&quot;&gt;Lewis Cowles&lt;/a&gt;.

@Lewis, 

Yes, you absolutely correct, using the shred command is a standard method for securely deleting files on Linux systems, as it overwrites the file&#039;s content before deleting it, making it more challenging for data recovery tools to retrieve the original information.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-2039106">Lewis Cowles</a>.</p>
<p>@Lewis, </p>
<p>Yes, you absolutely correct, using the shred command is a standard method for securely deleting files on Linux systems, as it overwrites the file&#8217;s content before deleting it, making it more challenging for data recovery tools to retrieve the original information.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lewis Cowles		</title>
		<link>https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-2039106</link>

		<dc:creator><![CDATA[Lewis Cowles]]></dc:creator>
		<pubDate>Wed, 26 Jul 2023 22:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23653#comment-2039106</guid>

					<description><![CDATA[Just use shred command to securely delete files in Linux.]]></description>
			<content:encoded><![CDATA[<p>Just use shred command to securely delete files in Linux.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Florian		</title>
		<link>https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1974684</link>

		<dc:creator><![CDATA[Florian]]></dc:creator>
		<pubDate>Wed, 01 Mar 2023 06:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23653#comment-1974684</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1296036&quot;&gt;Shujauddin Qureshi&lt;/a&gt;.

I would use logrotate for this.

https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1296036">Shujauddin Qureshi</a>.</p>
<p>I would use logrotate for this.</p>
<p><a target="_blank" href="https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/" rel="ugc">https://www.tecmint.com/install-logrotate-to-manage-log-rotation-in-linux/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: alex		</title>
		<link>https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1973866</link>

		<dc:creator><![CDATA[alex]]></dc:creator>
		<pubDate>Mon, 27 Feb 2023 22:00:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23653#comment-1973866</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1892050&quot;&gt;Gwen Broderick&lt;/a&gt;.

Doesn&#039;t work when you want to preserve any of the file&#039;s attributes, &#062;file is just better.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1892050">Gwen Broderick</a>.</p>
<p>Doesn&#8217;t work when you want to preserve any of the file&#8217;s attributes, &gt;file is just better.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gwen Broderick		</title>
		<link>https://www.tecmint.com/empty-delete-file-content-linux/comment-page-1/#comment-1892050</link>

		<dc:creator><![CDATA[Gwen Broderick]]></dc:creator>
		<pubDate>Wed, 05 Oct 2022 14:24:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23653#comment-1892050</guid>

					<description><![CDATA[I have yet another alternative for you:
&lt;pre&gt;
$ rm access.log
$ touch access.log
&lt;/pre&gt;
Yes, it is two commands, but you cannot beat the conceptual simplicity and not need to memorize any special syntax. It is pretty good out-of-the-box thinking :-)]]></description>
			<content:encoded><![CDATA[<p>I have yet another alternative for you:</p>
<pre>
$ rm access.log
$ touch access.log
</pre>
<p>Yes, it is two commands, but you cannot beat the conceptual simplicity and not need to memorize any special syntax. It is pretty good out-of-the-box thinking :-)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
