特定の親ディレクトリ内のすべてのファイルとサブディレクトリのグループ許可を、その特定のファイルまたはディレクトリのユーザー許可設定に設定します。
たとえば、以下のすべて /path/to/parentdir
# Permissions before
# Path Permissions
/path/to/parentdir/file1 755
/path/to/parentdir/file2 644
/path/to/parentdir/file3 600
# Permissions after
/path/to/parentdir/file1 775
/path/to/parentdir/file2 664
/path/to/parentdir/file3 660
1つのコマンドでこれを行う簡単な方法があることを願っています。たくさんのコマンドでスクリプトを使用する方法を考えることはできますが、それを行うにはかなり直接的な方法があるべきだと感じています。
前もって感謝します!