1
0
forked from crony/udict

words between brackets are bold.

This commit is contained in:
Raymaekers Luca 2023-06-08 20:27:03 +02:00
parent ae75c93921
commit 7311f743c2
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@ Simple script that uses simple dictionary to get the most liked/correct definiti
```bash ```bash
$ udict smh $ udict smh
meaning, "[shaking my head]", smh is typically used when something is obvious, [plain old stupid], or [disappointment]. meaning, "<b>shaking my head</b>", smh is typically used when something is obvious, <b>plain old stupid</b>, or <b>disappointment</b>.
``` ```
## Installation ## Installation

4
udict
View File

@ -7,4 +7,6 @@ term="$@"
term="$(printf '%s\n' "${term}" | sed 's/ /\\/g' )" term="$(printf '%s\n' "${term}" | sed 's/ /\\/g' )"
curl -s "https://api.urbandictionary.com/v0/define?term=${term}" | jq -r '.list[0].definition' curl -s "https://api.urbandictionary.com/v0/define?term=${term}" |
jq -r '.list[0].definition' |
sed 's/\[/\o033[1m/g;s/\]/\o033[0m/g'