blob: 58755a88aebf18eee6a2dcdf54c94ce3bad6b5bb (
plain)
1
2
3
4
5
|
#!/bin/sh
# Online CLI dictionary
curl -s https://www.wordnik.com/words/"$1" | awk '/id="define/{p=1}p' | awk '/div/{p++}p==2' | sed -e 's/<[^>]*>//g' | sed 's/^ *$//g' | expand --tabs=1 | less
|