blob: 1ca1f12e6777b28f1f393a46cb2ddb0a67ac6003 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# Download the list of words.
curl -o /tmp/words.txt \
https://raw.githubusercontent.com/dwyl/english-words/master/words.txt
# Make the script executable.
chmod +x grus-add
# Add those words to the database.
./grus-add \
-d $HOME/.local/share/grus/grus.db \
-f /tmp/words.txt
|