admin 管理员组文章数量: 887021
2024年2月20日发(作者:screen standby)
linuxshell之find高级点的用法
1 查找当前目录和文件,下面的o是or的意思, -iname是忽略大小写的意思(-o -iname)
find . -iname -o -iname
2 查找当前目录下的除了的文件(!)
find . ! -iname ""
3 查看当前目前下的目录(-type d)
find . -type d
4 查看当前目录下的普通文件(-type f)
find . -type f
5 查看当前目录下访问时间在一天内的文件(-atime)
find . -type f -atime -1
6 查看当前目录下访问时间在恰好一天的文件(-atime)
find . -type f -atime 1
7 查看当前目录下访问时间在恰好大于一天的文件(-atime)
find . -type f -atime +1
8 查看当前目录下访问时间在一分钟内的文件(-amin)
find . -type f -amin -1
9 查看当前目录下访问时间在恰好一分钟的文件(-amin)
find . -type f -amin 1
10 查看当前目录下访问时间在恰好大于一分钟的文件(-amin)
find . -type f -amin +1
11 查看当前目录下访问时间在访问文件更加接近的文件,就是更加接近现在(-newer)
find . -type f -newer
12 查看当前目录下文件大小在2G之内的文件(-size)
find . -type f -size -2G
13 查看当前目录下文件大小恰好2M的文件(-size)
find . -type f -size 2M
14 查看当前目录下文件大小恰好2K的文件(-size)
find . -type f -size +2k
15 删除当前目录下面的*.txt文件(-delete)
find . -name *.txt -delete
16 给当前目录的sh文件添加权限(-exec {} ;)
find . -name "*.sh" -exec chmod 777 {} ;
17 给当前目录下的普通文件添加权限(-exec {} ;)
find . -type f -exec chmod 777 {} ;
18 复制当前目录的sh文件到./sh目录(-exec {} ;)
find . -name "*.sh" -exec cp {} ./sh/ ;
19 删除当前目录的sh文件(-exec {} ;)
find . -name "*.sh" -exec rm {} ;
20 查找当前目录下的不包含".git"目录下的普通文件(-prune修剪)
find . -type f -o -name "*.git" -prune
版权声明:本文标题:linuxshell之find高级点的用法 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/free/1708439171h524368.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论