FollieHiyuki-dotfiles/home/.local/bin/dict
2021-03-13 18:34:45 +03:00

8 lines
128 B
Bash
Executable File

#!/bin/sh
if [ -z "$1" ]; then
aspell dump master | sort | fzf --no-multi | xargs dict
else
curl "dict://dict.org/d:$1"
fi