Creating recursive folders with a linux bash script
https://stackoverflow.com/questions/59813777/creating-recursive-folders-with-a-linux-bash-script
Creating recursive folders with a linux bash script After creating a single folder called 'main' inside that folder it will create 6 'a' folders named with numbers and letters respectively "1a 2a 3a 4a 5a 6a" After creating those 6 'a' folders, it's going to create 6 'b' folders inside EACH of those 6 'a' folders. So each 'a' folder will contain "1b 2b 3b 4b 5b 6b"
After creating a single folder called 'main' inside that folder it will create 6 'a' folders named with numbers and letters respectively "1a 2a 3a 4a 5a 6a"
After creating those 6 'a' folders, it's going to create 6 'b' folders inside EACH of those 6 'a' folders. So each 'a' folder will contain "1b 2b 3b 4b 5b 6b"
DA: 100 PA: 44 MOZ Rank: 95