projects
/
multypo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Change output color per label
[multypo.git]
/
play.sh
1
#!/bin/sh
2
3
# you should probably download a txt dictionary of your favourite language and use that as a words.txt
4
5
WORDSTOPLAY=10
6
7
sort -R words.txt | fgrep -v \" | head -n $WORDSTOPLAY | ./game
8