标签:条件 文件查找 参数 localhost 通过 txt find 命名 local
[root@localhost ~]# find / -name 123.txt
/ : 从根目录开始找
-name : 通过名字进行查找
123.txt :要查找的文件名字
[root@localhost qiancheng]# grep -c 1 123.txt
3
----------------------------------------------
[root@localhost qiancheng]# grep -n 1 123.txt
40:12121 12
41:21213132123132
108:1
[root@localhost qiancheng]# which rm
alias rm=‘rm -i‘
/usr/bin/rm
查找rm命名所在目录
标签:条件 文件查找 参数 localhost 通过 txt find 命名 local
原文地址:https://www.cnblogs.com/init-qiancheng/p/14597509.html