FollieHiyuki-dotfiles/home/.local/bin/dict
2021-10-17 21:47:45 +07: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