diceware/wordlist/go-create-wordlist.sh

25 lines
297 B
Bash
Raw Normal View History

#!/bin/bash
#
# Wrapper to create our wordlist from any directory
#
# Errors fatal
set -e
pushd $(dirname $0) > /dev/null
JS="wordlist.js"
echo "# "
echo "# Creating wordlist Javascript..."
echo "# "
./create-wordlist.php > ${JS}
echo "# "
echo "# Done! List created at ${JS}"
echo "# "