mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 04:08:30 -05:00
8 lines
128 B
Bash
Executable File
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
|