chmoddr
Written by Kai Dietrich   
Tuesday, 02 January 2007

chmoddr - "chmod directories recursive"

this little script will chmod all directories below the given path $2 with the given chmod statement. When I have the time, I'll create a help, parameter checking and everything else needed to make it a usable command.


~/bin $ less chmoddr
  #!/bin/sh
  find $2 -type d -exec chmod $1 {} \;