forked from crony/udict
13 lines
282 B
Bash
Executable File
13 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ $# -eq 0 ] && printf '%s\n' "Usage:
|
|
udict some term" && exit 1
|
|
|
|
term="$@"
|
|
|
|
term="$(printf '%s\n' "${term}" | sed 's/ /\\/g' )"
|
|
|
|
curl -s "https://api.urbandictionary.com/v0/define?term=${term}" |
|
|
jq -r '.list[0].definition' |
|
|
sed 's/\[/\o033[1m/g;s/\]/\o033[0m/g'
|