<?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 Useful Chaining Operators in Linux with Practical Examples	</title>
	<atom:link href="https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 11 Dec 2023 05:12:16 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Paul Thompson		</title>
		<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1795116</link>

		<dc:creator><![CDATA[Paul Thompson]]></dc:creator>
		<pubDate>Sat, 14 May 2022 07:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5078#comment-1795116</guid>

					<description><![CDATA[&lt;strong&gt;10.&lt;/strong&gt; Example is showing escape characters, not concatenation. The operator has two functions, escape and concatenate.

Concatenation example: 
&lt;pre&gt;
mkdir a b \
c d
&lt;/per&gt;
The above will create four directories, a b, c, and d.

Escape example:
&lt;pre&gt;
echo &quot;This \nis on two lines.&quot;
&lt;/pre&gt;
The above outputs the line split by a \n or new line escape character:
&lt;pre&gt;
This
is on two lines.
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p><strong>10.</strong> Example is showing escape characters, not concatenation. The operator has two functions, escape and concatenate.</p>
<p>Concatenation example: </p>
<pre>
mkdir a b \
c d

The above will create four directories, a b, c, and d.

Escape example:
</pre>
<pre>
echo "This \nis on two lines."
</pre>
<p>The above outputs the line split by a \n or new line escape character:</p>
<pre>
This
is on two lines.
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: khal		</title>
		<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1400925</link>

		<dc:creator><![CDATA[khal]]></dc:creator>
		<pubDate>Mon, 14 Dec 2020 15:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5078#comment-1400925</guid>

					<description><![CDATA[Thanks, very useful and enlightening examples...]]></description>
			<content:encoded><![CDATA[<p>Thanks, very useful and enlightening examples&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Hauke		</title>
		<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1387237</link>

		<dc:creator><![CDATA[Hauke]]></dc:creator>
		<pubDate>Mon, 09 Nov 2020 12:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5078#comment-1387237</guid>

					<description><![CDATA[Hey there,

Nice article, thank you.

I got one question. As I understand it, the following statement, within the example for the precedence operator, is false:

&quot;In the above pseudo command, what if the Command_x1 fails? Neither of the Command_x2, Command_x3, Command_x4 would be executed, for this, we use Precedence Operator, as:&quot;
As is command_x1 fails, command_x2 will not be executed but Command_x3 will, and the execution of Command_x4 will depend on the result of Command_x3.

Cheers

Hauke]]></description>
			<content:encoded><![CDATA[<p>Hey there,</p>
<p>Nice article, thank you.</p>
<p>I got one question. As I understand it, the following statement, within the example for the precedence operator, is false:</p>
<p>&#8220;In the above pseudo command, what if the Command_x1 fails? Neither of the Command_x2, Command_x3, Command_x4 would be executed, for this, we use Precedence Operator, as:&#8221;<br />
As is command_x1 fails, command_x2 will not be executed but Command_x3 will, and the execution of Command_x4 will depend on the result of Command_x3.</p>
<p>Cheers</p>
<p>Hauke</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Muthalagu		</title>
		<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1322229</link>

		<dc:creator><![CDATA[Muthalagu]]></dc:creator>
		<pubDate>Sat, 21 Mar 2020 14:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5078#comment-1322229</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1322228&quot;&gt;Muthalagu&lt;/a&gt;.

bash: !: event not found
[root@localhost tecmint]# rm -r !(*.html)
bash: !: event not found]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1322228">Muthalagu</a>.</p>
<p>bash: !: event not found<br />
[root@localhost tecmint]# rm -r !(*.html)<br />
bash: !: event not found</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Muthalagu		</title>
		<link>https://www.tecmint.com/chaining-operators-in-linux-with-practical-examples/comment-page-1/#comment-1322228</link>

		<dc:creator><![CDATA[Muthalagu]]></dc:creator>
		<pubDate>Sat, 21 Mar 2020 14:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5078#comment-1322228</guid>

					<description><![CDATA[As per your example, &lt;strong&gt;NOT&lt;/strong&gt; operator is not working you gave &lt;code&gt;rm -r !(*.html)&lt;/code&gt;.]]></description>
			<content:encoded><![CDATA[<p>As per your example, <strong>NOT</strong> operator is not working you gave <code>rm -r !(*.html)</code>.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
