Compare commits
2 Commits
8c1cedda5a
...
0f03fc46a8
| Author | SHA1 | Date |
|---|---|---|
|
|
0f03fc46a8 | |
|
|
1db7258b2f |
|
|
@ -1,3 +1,5 @@
|
|||
/target
|
||||
Cargo.lock
|
||||
*.pem
|
||||
|
||||
bck.words.txt
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
cp words.txt bck.words.txt
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
tr '[:lower:]' '[:upper:]' < words.txt | sort -u > words_tmp.txt
|
||||
mv words_tmp.txt words.txt
|
||||
|
||||
echo "Done"
|
||||
else
|
||||
echo "Fail"
|
||||
fi
|
||||
Loading…
Reference in New Issue