find命令的权限过滤技巧是使用-perm
参数来指定文件权限进行过滤。该参数后面可以跟一个三位数字,表示文件的权限,例如:
find /path/to/directory -perm 644
:查找权限为644的文件find /path/to/directory -perm -444
:查找权限中包含444的文件find /path/to/directory -perm /222
:查找权限包含任意一个222的文件可以将-perm
参数与-exec
参数结合使用,以便对查找到的文件执行相应的操作。