comparison bin/define @ 0:e037173e0012

Initial import.
author HackBot
date Thu, 16 Feb 2012 19:42:32 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e037173e0012
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