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
共有 0 条评论