25 lines
725 B
Bash
Executable file
25 lines
725 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# queries quetre, a non-JS version of quora
|
|
# to find a list of all instances and documentation, visit:
|
|
# https://codeberg.org/zyachel/quetre/
|
|
#
|
|
lastarg=("${@: -1}")
|
|
|
|
search=""
|
|
for ARG in "${@}" ; do
|
|
if [[ $ARG == "${lastarg[1]}" ]] ; then
|
|
search+="${ARG}"
|
|
else
|
|
search+="${ARG}+"
|
|
fi
|
|
done
|
|
|
|
# instances
|
|
# links "https://quora.vern.cc/search?q=${search}"
|
|
links "https://qr.vern.cc/search?q=${search}"
|
|
# links "https://quetre.pussthecat.org/search?q=${search}"
|
|
# links "https://quetreus.herokuapp.com/search?q=${search}"
|
|
# links "https://quetre.tokhmi.xyz/search?q=${search}"
|
|
# links "https://quetre.esmailelbob.xyz/search?q=${search}"
|
|
# links "https://quetre.iket.me/search?q=${search}"
|