tootapalooza/server-util/tootctl

13 lines
235 B
Plaintext
Raw Normal View History

2022-11-27 09:17:52 -05:00
#!/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