Generate random password with GPG (ASCII armored)
gpg --gen-random --armor 1 15 | head -c15
Uses gpg to generate 15 bytes of random data as a password, outputs it in ASCII armored format, and limits the output to 15 characters.
gpg --gen-random --armor 1 15 | head -c15
Uses gpg to generate 15 bytes of random data as a password, outputs it in ASCII armored format, and limits the output to 15 characters.