Pretify `dict` script

This commit is contained in:
Hoang Nguyen 2021-03-13 19:13:33 +03:00
parent 30cd42b7b2
commit b6ddbcb73c
No known key found for this signature in database
GPG Key ID: 813CF484F4993419
1 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,13 @@
#!/bin/sh
cyan=$(tput setaf 6)
red=$(tput setaf 1)
bold=$(tput bold)
underline=$(tput smul)
esc=$(tput sgr0)
if [ -z "$1" ]; then
aspell dump master | sort | fzf --no-multi | xargs dict
else
curl "dict://dict.org/d:$1"
curl -s "dict://dict.org/d:$1" | sed -n -e '/^151.*/,/^\./p' | sed -e 's/^151.*//g' -e '/^\./D' -e '/^\s*1\./i\\' -e "s/{\([^{]*\)}/${esc}${bold}${underline}\1${esc}/g" -e "s/^\($1\)\(\W\)/${esc}${bold}${red}\1${esc}\2/gI" -e "s/^\(\s*\)\([0-9]\.\)/\1${esc}${bold}${cyan}\2${esc}/g" -e 's/--/—/g' -e 's/—\(\w\)/— \1/g'
fi