tootapalooza/server-util/tootctl

13 lines
235 B
Bash
Executable File

#!/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