码迷,mamicode.com
首页 > 系统相关 > 详细

Linux文件查找的命令

时间:2021-03-31 12:14:17      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:条件   文件查找   参数   localhost   通过   txt   find   命名   local   

Linux命令

1.Linux文件相关的命令

1.1 find 查找文件或目录

语法:find [搜索范围][匹配条件]
参数说明
  • -name:按文件名称查找
  • -user:按文件拥有者查找
  • -size:按照文件大小查找(+n大于,-n小于,n等于)
[root@localhost ~]# find / -name 123.txt
/ : 从根目录开始找
-name : 通过名字进行查找
123.txt :要查找的文件名字

1.2 grep 在文件内搜索字符串匹配的行输出

语法:grep [参数] 查找内容 源文件
参数:
  • -c: count只输出匹配的行数的个数
  • -n: line-number:显示匹配行以及行号
[root@localhost qiancheng]# grep -c 1 123.txt 
3
----------------------------------------------
[root@localhost qiancheng]# grep -n 1 123.txt 
40:12121 12
41:21213132123132
108:1

1.3 which搜索命令所在目录以及别名信息

语法:which 命令
[root@localhost qiancheng]# which rm
alias rm=‘rm -i‘
        /usr/bin/rm
查找rm命名所在目录

Linux文件查找的命令

标签:条件   文件查找   参数   localhost   通过   txt   find   命名   local   

原文地址:https://www.cnblogs.com/init-qiancheng/p/14597509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!