CoverT 39: mkdir multiple directories

Learned something cool with regards to creating multiple directories with bash. There a million different options you can use to do different things, but I learned that if you run this command:

mkdir lib{,64}

It will create two directories; one named lib and one named lib64. Neato!