Comments on: Wikit – A Command Line Tool to Search Wikipedia on Linux https://www.tecmint.com/wikipedia-commandline-tool/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Thu, 13 Jul 2023 08:20:32 +0000 hourly 1 By: Ravi Saive https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2002187 Wed, 26 Apr 2023 04:22:23 +0000 https://www.tecmint.com/?p=30157#comment-2002187 In reply to Konstantinos K. Bourdakos.

@Konstantinos,

Yes, it should be a --line flag, which set line wrap length.

]]>
By: Konstantinos K. Bourdakos https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-2001958 Tue, 25 Apr 2023 20:53:48 +0000 https://www.tecmint.com/?p=30157#comment-2001958 Hi,

The wrap needs --line flag, -l is being used for specifying the language.

Thank you,

]]>
By: Dik dollan https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1476877 Fri, 16 Apr 2021 06:53:58 +0000 https://www.tecmint.com/?p=30157#comment-1476877 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.

#!/bin/bash
v1="Daniel"
v3="y"
v4="/Users/dickdollan/scripts/DarwinAi/result"
v5="sleep .5s"

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

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

repeat

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

if [ $v3 == "n" ]
then
break
fi

repeat

done

say -v $v1 "Goodbye"

]]>
By: Briain https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1452034 Tue, 16 Mar 2021 18:30:12 +0000 https://www.tecmint.com/?p=30157#comment-1452034 There’s a typo for installing it should be `npm install -g wikit`.

]]>
By: Malcul https://www.tecmint.com/wikipedia-commandline-tool/comment-page-1/#comment-1333367 Wed, 13 May 2020 15:50:19 +0000 https://www.tecmint.com/?p=30157#comment-1333367 This has worked for me previously on Mint 19.3 but since a complete reinstall, this set of instructions has left me needing ‘sudo‘ in front of every query. Can there be a simple solution?

]]>