1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-16 17:08:27 +00:00
password/generateXKCDWordList.sh
Knut Ahlers eed2ae8b08
Breaking: Password v2.0.0 (#5)
- Fix broken vendoring for library users (closes #4)
	- Move command to `cmd/password` subdir
- Drop support for Alfred workflow
- Add support for Go 1.11+ modules
2019-02-28 19:51:33 +01:00

21 lines
571 B
Bash

#!/bin/bash
set -euo pipefail
version="19af63af"
source="https://raw.githubusercontent.com/leonardr/olipy/${version}/olipy/data/corpora-olipy/words/scribblenauts.json"
words=$(curl -sL "${source}" | jq -r '.nouns | .[]' | sort | 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