Linux(locate,find + grep)

find
find /home -name 1.txt #在home目录下查找1.txt
find /home -name 1.txt | more #可以更方便的显示,而不是全部显示不宜于操作

find /home -size +10k #查找/home下大小大于10k的文件
# 参数说明 + 代表大于 - 代表小于
# 单位 (k, M, G)
ls -lh #显示文件大小

locate
在执行之前必须先执行updatedb
locate 1.txt

which(查看指令在那个目录下)
which reboot #查看reboot在那个目录下

grep(过滤查找)
通常配合**| **符号使用
cat a.txt | grep "zs" #在a.txt中查找zs
cat a.txt | grep -n "zs" #-n表示显示行号
grep -n "yes" /home/a

Linux(locate,find + grep)最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/14295.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>