Web Hosting Talk







View Full Version : HELP creating Directories


sitekeeper
11-06-2002, 02:51 PM
I need to make a "cache" directory in about 100 different directories and chmod them all. Is there a quick way to do this using SSH?

MarkIL
11-06-2002, 03:12 PM
for I in `find . -type d -print` do mkdir $I/cache; chmod 755 $I/cache; done