comparison bin/etymology @ 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 'Look up 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://etymonline.com/?search='"$QUERY" |
12 grep -A 100 ']'"$1" |
13 sed 's/\[[0-9]*\]//g ; s/ Look up.*// ; s/ */ /g'