Skip to content

Instantly share code, notes, and snippets.

@ldrahnik
Last active November 28, 2017 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ldrahnik/48b558291640c937487808db0ec5178f to your computer and use it in GitHub Desktop.
Save ldrahnik/48b558291640c937487808db0ec5178f to your computer and use it in GitHub Desktop.
Anee (https://github.com/anee/anee) - create test users.
// example of usage:
// bash create_test_users.sh 50
#!/bin/bash
for i in `seq 1 $1`;
do
php www/index.php app:add-user TEST_$i unknown_$i unknown_$i TEST_$i@fake.test.email.cz foobar user 2>/dev/null
if (( $? != 0 )); then
echo 'damn, there was an error'
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment