ディレクトリとすべてのサブディレクトリ内のすべてのファイルのファイルアクセス権を変更するBashスクリプトが必要です。Bashスクリプト:ファイルアクセス権を再帰的に変更する
for each file in directory (and subdirectories)
if i am the owner of the file
if it is a directory
chmod 770 file
else
chmod 660 file
私はそれが難しい作業ではないと思いますが、私はBashスクリプトではあまり経験がありません。あなたの助けに感謝します! :D