This is still one of my favorite ways to create a random alphanumeric password that is 64 characters long from a mac terminal:
cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 64 | sed 1q
This is still one of my favorite ways to create a random alphanumeric password that is 64 characters long from a mac terminal:
cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 64 | sed 1q