使组权限与用户权限相同


27

我想将某个父目录内所有文件和子目录的组权限设置为该特定文件或目录的用户权限设置。

例如,下面的所有内容 /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

我希望有一个简单的方法可以希望执行一个命令。我可以想到使用带有一堆命令的脚本的方法,但是感觉应该有一种非常直接的方法。

提前致谢!

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.