为子文件夹中的文件设置文件权限

时间:2014-05-12 20:58:38

标签: linux file-permissions chmod

使用Linux Fedora 20,它位于父文件夹中,其中包含a1, a2, a3, ..., a100个子文件夹,每个子文件夹中包含两个文件,我要为其分配一个新权限,即664。那就是我想要像chmod 664 -R *这样的东西,但这不起作用。不应触及子文件夹本身。

1 个答案:

答案 0 :(得分:1)

find $parent -type f | xargs chmod 664