some modification on instpkg
[cmdllinux.git] / scripts / _setperm.sh
blob9f107b059160313307af6bbedb696048a1f410a5
1 #! /bin/bash
3 find -type d | while read dirs; do chmod 755 "$dirs"; done
4 find -type f | while read files; do chmod 644 "$files"; done