diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-01-01 21:33:20 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-01-01 21:33:20 +0500 |
commit | bf962aa998b7cebe52ea94141690475f4fdc1fe0 (patch) | |
tree | b16151214341b04d10b38b5c3566f26dd583c4fd /scripts/gen_passwords |
initial commit
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 |