Add random-passowrd.sh

A short helper script to generate temporary random passwords.
This commit is contained in:
c47 2024-01-28 08:04:11 +01:00
parent 52b92e4481
commit 2a77257d89

1
random-password.sh Normal file
View file

@ -0,0 +1 @@
< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;