This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.local/bin/dict

14 lines
528 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 -r 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