summaryrefslogtreecommitdiff
path: root/scripts/genpasswd
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-06-15 16:06:11 +0500
committerpryazha <pryadeiniv@mail.ru>2025-06-15 16:06:11 +0500
commit55d0510313c623a5d9070b7ddc88693a63ca5c2b (patch)
tree9d2308af32704325505f0a18e95365e37f004214 /scripts/genpasswd
parent01180bc8d01a3511c355567ac5734cac6e132ab5 (diff)
some scripts, bash, tmux changes
Diffstat (limited to 'scripts/genpasswd')
-rwxr-xr-xscripts/genpasswd5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/genpasswd b/scripts/genpasswd
new file mode 100755
index 0000000..bb7f016
--- /dev/null
+++ b/scripts/genpasswd
@@ -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