1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 10:22:56 +00:00
password/generateXKCDWordList.sh
Knut Ahlers 95e47e193f
Fix: RawGit is closing down, use Github URL
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-12-30 13:44:08 +01:00

21 lines
533 B
Bash

#!/bin/bash
set -euo pipefail
version="8744120d"
source="https://raw.githubusercontent.com/leonardr/olipy/${version}/data/more-corpora/scribblenauts_words.txt"
words=$(curl -sL "${source}" | awk '/^[a-z]{4}[a-z]*$/{ print "\""$1"\"," }')
cat -s <<EOF >lib/xkcd_words.go
package securepassword
// xkcdWordList contains a list of words derived from the scribblenauts
// word list inside the olipy library by leonardr
// https://github.com/leonardr/olipy
var xkcdWordList = []string{
${words}
}
EOF
gofmt -s -w lib/xkcd_words.go