mirror of
https://git.bashclub.org/bashclub/zamba-lxc-toolbox.git
synced 2025-07-23 12:15:01 +02: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
|
||
|
}
|