Return to Snippet

Revision: 9358
at November 1, 2008 13:39 by moonbather


Initial Code
find . | while read i ;do if [ -f $i ];then echo "file:${i}"; chmod 644 ${i} ; fi ; if [ -d $i ];then echo "dir:${i}" ;chmod 755 ${i} ;  fi; done

Initial URL


Initial Description


Initial Title
set recursive web permissions on files and directories

Initial Tags


Initial Language
Bash