Urandom ke ASCII

# generate 10mb of data encoded in base64 format
base64 /dev/urandom | head -c 10000000 > file.txt
CertainBadProgrammer