mirror of
https://github.com/bashclub/zamba-lxc-toolbox
synced 2025-08-15 02:02:26 +00:00
8 lines
183 B
Bash
8 lines
183 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# This script has basic functions like a random password generator
|
||
|
|
||
|
random_password() {
|
||
|
set +o pipefail
|
||
|
C_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | head -c32
|
||
|
}
|