<?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: 10 Interesting Linux Command Line Tricks and Tips Worth Knowing	</title>
	<atom:link href="https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 23:25:25 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: dragonmouth		</title>
		<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-1302094</link>

		<dc:creator><![CDATA[dragonmouth]]></dc:creator>
		<pubDate>Thu, 05 Dec 2019 17:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23978#comment-1302094</guid>

					<description><![CDATA[&quot;The next example renames all files matching &lt;code&gt;&quot;*.bak&quot;&lt;/code&gt; to strip the extension, where &lt;code&gt;&#039;s/\e.bak$//&#039;&lt;/code&gt; is the rule:&quot; I know this is an old thread but shouldn&#039;t there be screen shots of the output of this command?]]></description>
			<content:encoded><![CDATA[<p>&#8220;The next example renames all files matching <code>"*.bak"</code> to strip the extension, where <code>'s/\e.bak$//'</code> is the rule:&#8221; I know this is an old thread but shouldn&#8217;t there be screen shots of the output of this command?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857793</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Fri, 06 Jan 2017 16:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23978#comment-857793</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857655&quot;&gt;Buchan&lt;/a&gt;.

@Buchan 

Thanks for the useful insights.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857655">Buchan</a>.</p>
<p>@Buchan </p>
<p>Thanks for the useful insights.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Buchan		</title>
		<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857655</link>

		<dc:creator><![CDATA[Buchan]]></dc:creator>
		<pubDate>Thu, 05 Jan 2017 15:39:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23978#comment-857655</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-855298&quot;&gt;Ed&lt;/a&gt;.

&quot;You should only use su if there is no other option&quot;

What? Really, blanket sudo is worse than su. 

What is wrong with:
&lt;pre&gt;
su -c &#039;&#062; /var/log/uptime.log&#039;
&lt;/pre&gt;
(Hint: nothing)

Regarding the solution in.the article that uses:
&lt;pre&gt;
$ su 
$ sudo ...
&lt;/pre&gt;
What is the purposeof the &#039;sudo&#039;? Again: nothing.

Regarding killing processes using pidof and then kill, it can be more effecrive to use pkill (if you are unfamiliar with pkill, you van use prgrep to see which processes pkill would kill, they take mostly the same optioms).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-855298">Ed</a>.</p>
<p>&#8220;You should only use su if there is no other option&#8221;</p>
<p>What? Really, blanket sudo is worse than su. </p>
<p>What is wrong with:</p>
<pre>
su -c '&gt; /var/log/uptime.log'
</pre>
<p>(Hint: nothing)</p>
<p>Regarding the solution in.the article that uses:</p>
<pre>
$ su 
$ sudo ...
</pre>
<p>What is the purposeof the &#8216;sudo&#8217;? Again: nothing.</p>
<p>Regarding killing processes using pidof and then kill, it can be more effecrive to use pkill (if you are unfamiliar with pkill, you van use prgrep to see which processes pkill would kill, they take mostly the same optioms).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857465</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 04 Jan 2017 12:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23978#comment-857465</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857440&quot;&gt;Anonymous&lt;/a&gt;.

@Anonymous

Works just fine. thanks for the useful suggestion.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857440">Anonymous</a>.</p>
<p>@Anonymous</p>
<p>Works just fine. thanks for the useful suggestion.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-857440</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Wed, 04 Jan 2017 08:13:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23978#comment-857440</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-855298&quot;&gt;Ed&lt;/a&gt;.

cat /dev/null &#124; sudo tee /var/log/uptime.log]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-command-line-tricks-and-tips-worth-knowing/comment-page-1/#comment-855298">Ed</a>.</p>
<p>cat /dev/null | sudo tee /var/log/uptime.log</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
