### 查询文件命令
find 目录路径 -选项(name,size,user)过滤文件
根据名称:
[root@future home]# find ./ -name a.*
./damo/a.txt
根据用户:
[root@future home]# find ./ -user damo
./damo/hello/mm.txt
./damo/b.tx
./damo/a.txt
根据文件大小:
[root@future damo]# find /home/ -size +666
/home/future/.cache/tracker/meta.db
/home/future/.cache/tracker/meta.db-wal
/home/future/.cache/tracker/ontologies.gvdb
/home/future/.cache/gstreamer-1.0/registry.x86_64.bin
grep过滤查找及“|”管道符 :(文件类查找)
过滤文件:
[root@future damo]# cat lingpingzhi.txt |grep "b"
-rw-r--r--. 1 root root 152 12月 6 2021 b.tx
-rw-r--r--. 1 root root 152 12月 6 2021 b.tx
显示行号:n
[root@future damo]# cat lingpingzhi.txt |grep -n "b"
39:-rw-r--r--. 1 root root 152 12月 6 2021 b.tx
43:-rw-r--r--. 1 root root 152 12月 6 2021 b.tx
47:-rw-r--r--. 1 root root 152 12月 6 2021 b.tx
查找命令在那个目录下
[root@future damo]# which ll
alias ll='ls -l --color=auto'
/usr/bin/ls
[root@future damo]# which cd
/usr/bin/cd