linux shell之find高级点的用法

简介: linux shell之find高级点的用法

1  查找当前目录a.txt和b.txt文件,下面的o是or的意思, -iname是忽略大小写的意思(-o -iname)

find . -iname a.txt -o -iname b.txt


2 查找当前目录下的除了a.txt的文件(!)

find . ! -iname "a.txt"


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 查看当前目录下访问时间在访问b.txt文件更加接近的文件,就是更加接近现在(-newer)

find . -type f -newer b.txt


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


相关文章
|
1月前
|
存储 Shell Linux
Linux 如何更改默认 Shell
Linux 如何更改默认 Shell
33 0
Linux 如何更改默认 Shell
|
1月前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
95 3
|
2月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
80 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
1月前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
2月前
|
Ubuntu Linux
Linux的基础用法
Linux的基础用法
24 6
|
2月前
|
存储 Shell Linux
【Linux】shell基础,shell脚本
Shell脚本是Linux系统管理和自动化任务的重要工具,掌握其基础及进阶用法能显著提升工作效率。从简单的命令序列到复杂的逻辑控制和功能封装,Shell脚本展现了强大的灵活性和实用性。不断实践和探索,将使您更加熟练地运用Shell脚本解决各种实际问题
37 0
|
Linux Go 数据安全/隐私保护
linux常用命令手册 用户管理useradd 文件权限管理chmod 搜索管理find grep
linux常用命令手册 用户管理useradd 文件权限管理chmod 搜索管理find grep
104 2
|
3月前
|
机器学习/深度学习 存储 Linux
linux中强大且常用命令:find、xargs、grep
linux中强大且常用命令:find、xargs、grep
186 9
|
5月前
|
JSON Java Linux
linux 命令使用总结:vim,nohup,find,df,du,sudo,netstat,ll,curl,lastlog
linux 命令使用总结:vim,nohup,find,df,du,sudo,netstat,ll,curl,lastlog
76 5
|
7月前
|
Unix Linux
Linux命令之find
Linux命令之find
45 2