mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 08:48:27 -05:00
14 lines
525 B
Bash
Executable File
14 lines
525 B
Bash
Executable File
#!/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 -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
|