爪哇 Linux 2021-08-13 把当前目录下所有后缀名为.txt的文件的权限修改为777? 方式一,使用 xargs 命令:find ./ -type f -name ".txt" |xargs chmod 777 方式二,使用exec命令:find ./ -type f -name ".txt" -exec chmod 777 {}