comparison bin/google @ 5643:56dcce63901b

<tswett> revert
author HackBot
date Sun, 21 Jun 2015 02:47:59 +0000
parents e037173e0012
children
comparison
equal deleted inserted replaced
5642:987c834ab84d 5643:56dcce63901b
1 #!/bin/bash
2 if [ ! "$1" ]
3 then
4 echo 'Google what?'
5 exit 1
6 fi
7
8 QUERY=`echo -n "$1" | od -t x1 -A n -w1000 | tr " " %`
9
10 lynx --cfg=/dev/null --lss=/dev/null \
11 --dump --width=1000 'http://google.com/search?q='"$QUERY" |
12 grep -A 4 'Search Results' |
13 tail -n 2