<?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: Understanding Shell Commands Easily Using &#8220;Explain Shell&#8221; Script in Linux	</title>
	<atom:link href="https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 17:16:52 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: WeAreGeek		</title>
		<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-773055</link>

		<dc:creator><![CDATA[WeAreGeek]]></dc:creator>
		<pubDate>Mon, 18 Apr 2016 13:18:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=14758#comment-773055</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-708454&quot;&gt;Anne&lt;/a&gt;.

How would that shell script be different than killall?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-708454">Anne</a>.</p>
<p>How would that shell script be different than killall?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anne		</title>
		<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-708454</link>

		<dc:creator><![CDATA[Anne]]></dc:creator>
		<pubDate>Wed, 18 Nov 2015 15:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=14758#comment-708454</guid>

					<description><![CDATA[looking for a person who has an idea how to do this: 

Create a bash-shell script called terminator that
terminates all processes of a name given to the shell
script as an argument.
(Guidance: pidof, ps –ef , awk)

if anyone has an idea please let me know :)]]></description>
			<content:encoded><![CDATA[<p>looking for a person who has an idea how to do this: </p>
<p>Create a bash-shell script called terminator that<br />
terminates all processes of a name given to the shell<br />
script as an argument.<br />
(Guidance: pidof, ps –ef , awk)</p>
<p>if anyone has an idea please let me know :)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: SDF		</title>
		<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-631769</link>

		<dc:creator><![CDATA[SDF]]></dc:creator>
		<pubDate>Mon, 27 Jul 2015 02:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=14758#comment-631769</guid>

					<description><![CDATA[This is a rather lame utility that gives you very, very little that you can&#039;t get with the &#039;man&#039; command. As the old saying goes, this is a utility that fills a much-needed gap in the Linux world.]]></description>
			<content:encoded><![CDATA[<p>This is a rather lame utility that gives you very, very little that you can&#8217;t get with the &#8216;man&#8217; command. As the old saying goes, this is a utility that fills a much-needed gap in the Linux world.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: minicast		</title>
		<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-629161</link>

		<dc:creator><![CDATA[minicast]]></dc:creator>
		<pubDate>Thu, 23 Jul 2015 13:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=14758#comment-629161</guid>

					<description><![CDATA[I had the same problem as @aligaligari 
I am using Ubuntu and in my man page for curl the &quot;--data-ur&quot; option is not listed (only &quot;--data-urlencode&quot;)
However, I managed to run the explain command after changing the script as follows:

# explain.sh begins
explain () {
  if [ &quot;$#&quot; -eq 0 ]; then
    while read  -p &quot;Command: &quot; cmd; do
      # curl -Gs &quot;https://www.mankier.com/api/explain/?cols=&quot;$(tput cols)--data $
      curl -Gs &quot;https://www.mankier.com/api/explain/?cols=70&#038;q=&quot;$cmd
    done
    echo &quot;Bye!&quot;
  elif [ &quot;$#&quot; -eq 1 ]; then
    # curl -Gs &quot;https://www.mankier.com/api/explain/?cols=&quot;$(tput cols) --data-ur $
    curl -Gs &quot;https://www.mankier.com/api/explain/?cols=70&#038;q=&quot;$1
  else
    echo &quot;Usage&quot;
    echo &quot;explain                  interactive mode.&quot;
    echo &quot;explain &#039;cmd -o &#124; ...&#039;   one quoted command to explain it.&quot;
  fi
}]]></description>
			<content:encoded><![CDATA[<p>I had the same problem as @aligaligari<br />
I am using Ubuntu and in my man page for curl the &#8220;&#8211;data-ur&#8221; option is not listed (only &#8220;&#8211;data-urlencode&#8221;)<br />
However, I managed to run the explain command after changing the script as follows:</p>
<p># explain.sh begins<br />
explain () {<br />
  if [ &#8220;$#&#8221; -eq 0 ]; then<br />
    while read  -p &#8220;Command: &#8221; cmd; do<br />
      # curl -Gs &#8220;https://www.mankier.com/api/explain/?cols=&#8221;$(tput cols)&#8211;data $<br />
      curl -Gs &#8220;https://www.mankier.com/api/explain/?cols=70&amp;q=&#8221;$cmd<br />
    done<br />
    echo &#8220;Bye!&#8221;<br />
  elif [ &#8220;$#&#8221; -eq 1 ]; then<br />
    # curl -Gs &#8220;https://www.mankier.com/api/explain/?cols=&#8221;$(tput cols) &#8211;data-ur $<br />
    curl -Gs &#8220;https://www.mankier.com/api/explain/?cols=70&amp;q=&#8221;$1<br />
  else<br />
    echo &#8220;Usage&#8221;<br />
    echo &#8220;explain                  interactive mode.&#8221;<br />
    echo &#8220;explain &#8216;cmd -o | &#8230;&#8217;   one quoted command to explain it.&#8221;<br />
  fi<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Avishek Kumar		</title>
		<link>https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-629159</link>

		<dc:creator><![CDATA[Avishek Kumar]]></dc:creator>
		<pubDate>Thu, 23 Jul 2015 13:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=14758#comment-629159</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-629072&quot;&gt;paco&lt;/a&gt;.

Sorry for the inconvenience @ Paco
the code is fixed. Use the new updated code.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/explain-shell-commands-in-the-linux-shell/comment-page-1/#comment-629072">paco</a>.</p>
<p>Sorry for the inconvenience @ Paco<br />
the code is fixed. Use the new updated code.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
