comparison bin/define @ 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 'Define 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=define:'"$QUERY" |
12 grep -A 3 'Definitions of' |
13 head -n 4 | tail -n 3