I need to create folders starting from 00 to 99 (00, 01, 02, 03, etc....) in several hundred places. Is there a single line command that will let me do that?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
mulaz's answer is correct, but many people say
However in some older versions of bash,
|
|||||||||||||
|
|
Will this do?
does a loop for numbers 0-99, and "-w" sets the equal width (0 padding for 0-9) |
|||||||||||||||||
|