💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › dotfiles › xapianOmegaSe… captured on 2023-01-29 at 11:30:54. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
xapianOmegaSearch.sh (511B)
1 query="" 2 status='start' 3 for p in "$@" 4 do 5 if [ "$status" = "start" ]; then 6 query=$p 7 status=processing 8 else 9 query=$query+$p 10 fi 11 done 12 13 echo Query: $query 14 15 echo "http://localhost:8000/cgi-bin/omega?P="$query"&DEFAULTOP=and&DB=default&FMT=query&xDB=default&xFILTERS=--O" 16 #w3m "http://localhost:8000/cgi-bin/omega?P="$query"&DEFAULTOP=and&DB=default&FMT=query&xDB=default&xFILTERS=--O" 17 lynx -nocolor "http://localhost:8000/cgi-bin/omega?P="$query"&DEFAULTOP=and&DB=default&FMT=query&xDB=default&xFILTERS=--O"