<?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: Wikit &#8211; A Command Line Tool to Search Wikipedia on Linux	</title>
	<atom:link href="https://www.tecmint.com/wikipedia-commandline-tool/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/wikipedia-commandline-tool/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 08:20:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2002187</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Wed, 26 Apr 2023 04:22:23 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30157#comment-2002187</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2001958&quot;&gt;Konstantinos K. Bourdakos&lt;/a&gt;.

@Konstantinos,

Yes, it should be a &lt;code&gt;--line&lt;/code&gt; flag, which set line wrap length.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2001958">Konstantinos K. Bourdakos</a>.</p>
<p>@Konstantinos,</p>
<p>Yes, it should be a <code>--line</code> flag, which set line wrap length.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Konstantinos K. Bourdakos		</title>
		<link>https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2001958</link>

		<dc:creator><![CDATA[Konstantinos K. Bourdakos]]></dc:creator>
		<pubDate>Tue, 25 Apr 2023 20:53:48 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30157#comment-2001958</guid>

					<description><![CDATA[Hi,

The wrap needs &lt;code&gt;--line&lt;/code&gt; flag, &lt;code&gt;-l&lt;/code&gt; is being used for specifying the language.

Thank you,]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>The wrap needs <code>--line</code> flag, <code>-l</code> is being used for specifying the language.</p>
<p>Thank you,</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dik dollan		</title>
		<link>https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1476877</link>

		<dc:creator><![CDATA[Dik dollan]]></dc:creator>
		<pubDate>Fri, 16 Apr 2021 06:53:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30157#comment-1476877</guid>

					<description><![CDATA[Add this zsh script with wikit for low tech A.I in your mac terminal. change the V1 variable to change the voice.

Change v4 Variable to the file path you want to store temporary files. These files are deleted when the script stops running. Install espeak and replace say with its command for use in Linux.

&lt;code&gt;#!/bin/bash
v1=&quot;Daniel&quot;
v3=&quot;y&quot;
v4=&quot;/Users/dickdollan/scripts/DarwinAi/result&quot;
v5=&quot;sleep .5s&quot;

repeat (){
    read -p &quot;What Is/ Are: &quot; v2
say -v $v1 &quot;I Am searching for info on &quot;$v2&quot;&quot; 
wikit $v2 &#062; $v4&quot;$v2&quot;.txt
say -v $v1 -f $v4&quot;$v2&quot;.txt;$v5
rm $v4*.txt
}

say -v $v1 &quot;Hello My Name Is Darwin&quot;;$v5;say -v $v1 &quot;I Answer Questions In The Form of What Is&quot;

repeat 

while [ $v3 == &quot;y&quot; ]
  do    
   say -v $v1 &quot;Do you have another Question&quot;
    read -p &quot;y/n: &quot; v3

      if [ $v3 == &quot;n&quot; ]
        then
          break
      fi 

    repeat

done

say -v $v1 &quot;Goodbye&quot;&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Add this zsh script with wikit for low tech A.I in your mac terminal. change the V1 variable to change the voice.</p>
<p>Change v4 Variable to the file path you want to store temporary files. These files are deleted when the script stops running. Install espeak and replace say with its command for use in Linux.</p>
<p><code>#!/bin/bash<br />
v1="Daniel"<br />
v3="y"<br />
v4="/Users/dickdollan/scripts/DarwinAi/result"<br />
v5="sleep .5s"</p>
<p>repeat (){<br />
    read -p "What Is/ Are: " v2<br />
say -v $v1 "I Am searching for info on "$v2""<br />
wikit $v2 &gt; $v4"$v2".txt<br />
say -v $v1 -f $v4"$v2".txt;$v5<br />
rm $v4*.txt<br />
}</p>
<p>say -v $v1 "Hello My Name Is Darwin";$v5;say -v $v1 "I Answer Questions In The Form of What Is"</p>
<p>repeat </p>
<p>while [ $v3 == "y" ]<br />
  do<br />
   say -v $v1 "Do you have another Question"<br />
    read -p "y/n: " v3</p>
<p>      if [ $v3 == "n" ]<br />
        then<br />
          break<br />
      fi </p>
<p>    repeat</p>
<p>done</p>
<p>say -v $v1 "Goodbye"</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Briain		</title>
		<link>https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1452034</link>

		<dc:creator><![CDATA[Briain]]></dc:creator>
		<pubDate>Tue, 16 Mar 2021 18:30:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30157#comment-1452034</guid>

					<description><![CDATA[There&#039;s a typo for installing it should be `&lt;strong&gt;npm install -g wikit&lt;/strong&gt;`.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a typo for installing it should be `<strong>npm install -g wikit</strong>`.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Malcul		</title>
		<link>https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1333367</link>

		<dc:creator><![CDATA[Malcul]]></dc:creator>
		<pubDate>Wed, 13 May 2020 15:50:19 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30157#comment-1333367</guid>

					<description><![CDATA[This has worked for me previously on &lt;strong&gt;Mint 19.3&lt;/strong&gt; but since a complete reinstall, this set of instructions has left me needing &#039;&lt;strong&gt;sudo&lt;/strong&gt;&#039; in front of every query. Can there be a simple solution?]]></description>
			<content:encoded><![CDATA[<p>This has worked for me previously on <strong>Mint 19.3</strong> but since a complete reinstall, this set of instructions has left me needing &#8216;<strong>sudo</strong>&#8216; in front of every query. Can there be a simple solution?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
