FollieHiyuki-dotfiles/home/.local/bin/dict

8 lines
128 B
Plaintext
Raw Normal View History

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