mirror of
https://github.com/bashclub/zamba-lxc-toolbox.git
synced 2024-11-07 19:31:58 +01: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
|
|
} |