view bin/define @ 11997:2a0b3c05fc97 draft

<ais523_> le//rn password//The password of the month is mostly irrelvant.
author HackEso <hackeso@esolangs.org>
date Mon, 04 Nov 2019 10:55:55 +0000
parents e037173e0012
children
line wrap: on
line source

#!/bin/bash
if [ ! "$1" ]
then
    echo 'Define what?'
    exit 1
fi

QUERY=`echo -n "$1" | od -t x1 -A n -w1000 | tr " " %`

lynx --cfg=/dev/null --lss=/dev/null \
    --dump --width=1000 'http://google.com/search?q=define:'"$QUERY" |
    grep -A 3 'Definitions of' |
    head -n 4 | tail -n 3