diff options
Diffstat (limited to 'scripts/gen_passwords')
-rwxr-xr-x | scripts/gen_passwords | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/gen_passwords b/scripts/gen_passwords new file mode 100755 index 0000000..bb7f016 --- /dev/null +++ b/scripts/gen_passwords @@ -0,0 +1,5 @@ +#!/bin/sh + +for count in 0 1 2 3 4 ; do + echo $(tr -dc 'a-zA-Z0-9_' </dev/urandom | head -c 16) +done |