Grigory Fateyev wrote: > find sss1 -type f -name "*" -exec chmod 644 {} \; > вам на man find :) #!/bin/sh # chmod-ng :) find "$1" -type $2 -print0| xargs -0 chmod $3 Без -print0 и -0 будут проблемы.