まるっとパーミッション変更

特定のディレクトリ配下とか、現在いるディレクトリ配下とかで特定のファイル(拡張子)のみパーミッションを変更

[code]find -name ‘*.php’ -print | xargs chmod 700[/code]

[code]find xxx/xxx -name ‘*.php’ -print | xargs chmod 700[/code]