#!/bin/bash # This is just a dummy script for testing. # To use it, do something like: # python3 make-users.py -n 3 -e username@example.com -p . if [ "$2" = "create" ] then echo "New password: foobar" else echo "OK" fi exit 0