summaryrefslogtreecommitdiff
path: root/scripts/gen_passwords
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-01-01 21:33:20 +0500
committerpryazha <pryadeiniv@mail.ru>2025-01-01 21:33:20 +0500
commitbf962aa998b7cebe52ea94141690475f4fdc1fe0 (patch)
treeb16151214341b04d10b38b5c3566f26dd583c4fd /scripts/gen_passwords
initial commit
Diffstat (limited to 'scripts/gen_passwords')
-rwxr-xr-xscripts/gen_passwords5
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