find命令高级用法

Posted 镜水洞天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find命令高级用法相关的知识,希望对你有一定的参考价值。

1. 目录和文件使用不同的权限

# 查找当前目录,所有文件类型为d[目录]的文件 执行命令 chmod 755
find .  -type d -exec chmod 755 {} \;   
# 查找当前目录,所有文件类型为f[文件]的文件 执行命令 chmod 644
find .  -type f -exec chmod 644 {} \;

2. 删除不显示字符文件名的文件

find . -inum [inode] -exec rm {} \;

例子:

[[email protected] ~]# ls -il
total 420
202645692 -rw-r--r--  1 root root   4096 Jan 10 19:41 ??
[root@localhost ~]# find . -inum 202645692
./??
[root@localhost ~]# find . -inum 202645692 -exec rm {} \;
[[email protected] ~]# find . -inum 202645692
[[email protected] ~]#

 

以上是关于find命令高级用法的主要内容,如果未能解决你的问题,请参考以下文章

浅谈Liunx下find time命令用法

mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段

mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段

Web安全入门与靶场实战(32)- 利用find提权

find 命令的 7 种用法

Linux基础教程 linux下使用find命令根据系统时间查找文件用法