ディレクトリ配下のシンボリックリンクを探す
$ find . -type l
ディレクトリ配下のディレクトリのパーミッションを変更する
$ find . -type d -exec chmod 755 {} \;
ディレクトリ配下のファイルのパーミッションを変更する
$ find . -type f -exec chmod 644 {} \;
グループ変更
$ chgrp グループ名 ファイル名またはディレクトリ名
例えば、index.htmlのグループをapacheにする。
$ chgrp apache index.html
現在いるディレクトリ配下のファイルやディレクトリもまとめてapacheグループ変更する。
$ chgrp -R apache ./