diff --git a/htpasswd.sh b/htpasswd.sh new file mode 100755 index 0000000..82373f5 --- /dev/null +++ b/htpasswd.sh @@ -0,0 +1,14 @@ +#!/bin/sh +if [ $# -eq 0 ] + then + echo "Please provide output file" + exit -1 +fi + +OUTPUT=$1 + +echo -n "Enter username and press [ENTER]: " +read USERNAME + +echo -n "$USERNAME:" >> $OUTPUT +openssl passwd -apr1 >> $OUTPUT