Creating Multiple Directories
March 16, 2020
I learned how to make multiple folders at once using the command line when I needed to organize some TV episodic photography for work. I don’t want to forget how to do this, so for reference:
for i in {1..8}; do |
Or simplified:
mkdir episode-0{1..50} |