学习笔记:CentOS 7学习之十二:查找命令
1.which-whereis-locate-grep-find查找命令
命令 | 说明 |
---|---|
which | 查看可执行文件的位置 |
whereis | 查看可执行文件的位置和文件 |
locate | 配合数据库缓存,快速查看文件位置 |
grep | 过滤匹配,它是一个文件搜索工具 |
which | 查找相关文件 |
1.1 which
[root@linuxprobe ~]# which cd
/bin/cd
1.2 whereis
[yangjie@linuxprobe ~]$ whereis cd
cd: /usr/bin/cd /usr/share/man/man1/cd.1.gz /usr/share/man/man1p/cd.1p.gz /usr/share/man/mann/cd.n.gz
1.3 locate
locate命令相当于find -name,是它的另外一种写法,但是这个要比find搜索快的多,因为find命令查找的是具体的目录文件,而locate它搜索的是数据库 /var/lib/mlocate/mlocate.db,这个数据库中存有本地所有的文件信息,这个数据库是linux自动创建并每天更新维护的。相关的配置信息在/etc/update.conf,查看定时任务在/etc/cron.daily/mlocate
touch /opt/yangjie.txt
locate yangjie.txt #发现文件不存在
updatedb #如果对当天的文件进行查找,需要手动更新数据库updatedb
locate yangjie.txt #文件能够正常查询到
1.4 grep
作用:过滤,它能够使用正则表达式来搜索文本,并把结果打印出来;
参数 | 作用 |
---|---|
-v | 取反(或者叫过滤) |
-i | 忽略大小写 |
^# | 以#开头 |
#$ | 以#结尾 |
^$ | 空行 |
-n | 对过滤的内容加上行号 |
l | 或者的意思 |
举例:
1)在passwd中查找以P开头的行
[root@linuxprobe ~]# grep ^p /etc/passwd
pegasus:x:66:65:tog-pegasus OpenPegasus WBEM/CIM services:/var/lib/Pegasus:/sbin/nologin
polkitd:x:998:997:User for polkitd:/:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
pulse:x:171:171:PulseAudio System Daemon:/var/run/pulse:/sbin/nologin
pkiuser:x:17:17:Certificate System:/usr/share/pki:/sbin/nologin
pcp:x:387:387:Performance Co-Pilot:/var/lib/pcp:/sbin/nologin
postgres:x:26:26:PostgreSQL Server:/var/lib/pgsql:/bin/bash
2)在passwd中查找以bash结尾的行
[root@linuxprobe ~]# grep bash$ /etc/passwd
root:x:0:0:root:/root:/bin/bash
amandabackup:x:33:6:Amanda user:/var/lib/amanda:/bin/bash
postgres:x:26:26:PostgreSQL Server:/var/lib/pgsql:/bin/bash
yangjie:x:1000:1000:yangjie:/home/yangjie:/bin/bash
oracle:x:1001:1001::/home/oracle:/bin/bash
3)在passwd中查找以p开头的行,并显示行号
[root@linuxprobe ~]# grep -n ^p /etc/passwd
15:pegasus:x:66:65:tog-pegasus OpenPegasus WBEM/CIM services:/var/lib/Pegasus:/sbin/nologin
18:polkitd:x:998:997:User for polkitd:/:/sbin/nologin
33:postfix:x:89:89::/var/spool/postfix:/sbin/nologin
35:pulse:x:171:171:PulseAudio System Daemon:/var/run/pulse:/sbin/nologin
36:pkiuser:x:17:17:Certificate System:/usr/share/pki:/sbin/nologin
49:pcp:x:387:387:Performance Co-Pilot:/var/lib/pcp:/sbin/nologin
55:postgres:x:26:26:PostgreSQL Server:/var/lib/pgsql:/bin/bash
4)使用grep查找sshd进程,同时过滤掉grep进程
[root@linuxprobe ~]# ps -ef|grep sshd|grep -v grep
root 1515 1 0 20:24 ?00:00:00 /usr/sbin/sshd -D
5)在passwd文件中搜索有nologin或者root字符的行
[root@linuxprobe ~]#grep "nologin\|root" /etc/passwd #“\|”为转义字符既|
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
……
[root@linuxprobe ~]# grep "nologin\|root" /etc/passwd|wc -l
54
[root@linuxprobe ~]# egrep "nologin|root" /etc/passwd |wc -l #使用egrep命令时可以不适用转义字符
54
1.5 find命令
格式:find pathname -option 【-print】
- 参数:
参数 | 说明 |
---|---|
pathname | find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 |
- 选项:
选项 | 说明 |
---|---|
-name | 按照文件名查找文件。 “名称” |
-perm | 按照文件权限来查找文件。 666、777等 |
-prune | 使用这一选项可以使find命令不在当前指定的目录中查找(即排除),如果同时使用-depth选项,那么-prune选项将被find命令忽略 |
-depth | 在查找文件时,首先查找当前目录中的文件,然后再在其子目录中查找 |
-user | 按照文件属主来查找文件 |
-group | 按照文件所属的组来查找文件 |
-mtime | -n/+n 按照文件的更改日期来查找文件: 1、-n表示文件的更改时间距现在n天以内;2、+n表示文件更改时间距现在n天之前 |
-type | 查找某一类型的文件:b-块设备文件;d-目录:c-字符设备文件;p-管道文件;l-符号链接文件;f-不同文件; |
-size | 查找符合指定大小的文件 |
-exec | 对匹配的文件执行改参数所给出的其他linux命令,相应命令的形式为' 命令 {} ;,注意{}和\;之间的空格,{}代表查到的内容; |
举例:
1)查找当前目录下的所有.txt文件
[root@linuxprobe ~]# find ./ -name "*.txt"
./.targetcli/history.txt
./.targetcli/log.txt
./2.txt
./1.txt
./file.txt
2)按照文件的更改时间或者访问时间等查找文件
如果希望按照更改时间来查找文件,可以使用atime,mtime或者ctime选项:
mtime:文件最后一次修改时间;
atime:文件最后一次访问时间;
ctime:文件的最后一次变化时间,也就是修改时间
a. 查看/root/目录下5天以内修改的文件:
[root@linuxprobe ~]# find /root/ -mtime -5
/root/
/root/.cache/abrt
/root/.cache/abrt/lastnotification
/root/.bash_history
/root/.viminfo
/root/2.txt
/root/.xauthqRxrFo
/root/p.sh
/root/1.txt
/root/file.txt
3)-exec对查找内容执行相应的命令
命令格式:
find | 空格 | path | 空格 | -option | 空格 | -exec | 空格 | 要执行的命令 | 空格 | {} | 空格 | \; | 说明 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
find | 空格 | ./ | 空格 | -name "*.txt" | 空格 | -exec | 空格 | ls -l | 空格 | {} | 空格 | ; | 查找当前目录下的.txt文件,并用ls -l显示详细信息 |
find | 空额 | /home/oracle/ | 空格 | -atime -10 | 空格 | -exec | 空格 | mv | 空格 | {} /opt/ | 空格 | ; | 查找/home/yangjie/目录下的所有在10天内访问过的文件,然后将他们移动到/opt/目录下 |
find | 空格 | ./ | 空格 | -name "*.txt" | 空格 | -exec | 空格 | tar -zcvf data.tar.gz | 空格 | {} | 空格 | ; | 查找当前目录下的所有.txt文件,然后打包成data.tar.gz |
依次如下:
a、find ./ -name "*.txt" -exec ls -l {} /;
[root@linuxprobe ~]# find ./ -name "*.txt" -exec ls -l {} \;
-rw-r--r--. 1 root root 0 9月 20 2018 ./.targetcli/history.txt
-rw-r--r--. 1 root root 3978 9月 20 2018 ./.targetcli/log.txt
-rw-r--r--. 1 root root 0 5月 3 23:32 ./1.txt
-rw-r--r--. 1 root root 0 5月 3 23:32 ./3.txt
-rw-r--r--. 1 root root 0 5月 3 23:33 ./2.txt
b、find /home/oracle/ -atime -10 -exec mv {} /opt ;
[root@linuxprobe ~]# find /home/oracle/ -atime -10 -exec mv {} /opt/ \;
[root@linuxprobe ~]# ll /opt/
总用量 4
drwxr-xr-x. 3 rootroot 18 4月 22 21:51 boot
drwxr-xr-x. 3 rootroot 22 9月 12 2018 ORCLfmap
drwxr-xr-x. 2 rootroot 6 9月 7 2017 rh
drwx------. 23 yangjie yangjie 4096 5月 3 20:24 yangjie
-rw-r--r--. 1 rootroot 0 5月 3 20:30 yangjie.txt
c、find ./ -name "*.txt" -exec tar -zcvf data.tar.gz {} ;
[root@linuxprobe ~]# find ./ -name "*.txt" -exec tar -zcvf data.tar.gz {} \;
./.targetcli/history.txt
./.targetcli/log.txt
./1.txt
./3.txt
./2.txt
[root@linuxprobe ~]# ll
总用量 16
-rw-r--r--. 1 root root0 5月 3 23:32 1.txt
-rw-r--r--. 1 root root0 5月 3 23:33 2.txt
-rw-r--r--. 1 root root0 5月 3 23:32 3.txt
-rw-------. 1 root root 2350 9月 6 2018 anaconda-ks.cfg
-rw-r--r--. 1 root root 111 5月 3 23:55 data.tar.gz
-rw-r--r--. 1 root root 2398 9月 6 2018 initial-setup-ks.cfg
drwxr-xr-x. 2 root root6 9月 6 2018 perl5
-rwxr-xr-x. 1 root root 105 5月 3 15:32 p.sh
4) 使用xargs -i命令来代替-exec
举例: find ./ -name "*.txt" | xargs -i cp {} /opt #将当前目录下所有的.txt文件复制到/opt/下
find ./ -name "*.txt" |xargs -i cp {} /opt/
[root@linuxprobe ~]# ll /opt
总用量 8
-rw-r--r--. 1 rootroot 0 5月 4 00:04 1.txt
-rw-r--r--. 1 rootroot 0 5月 4 00:04 2.txt
-rw-r--r--. 1 rootroot 0 5月 4 00:04 3.txt
drwxr-xr-x. 3 rootroot 18 4月 22 21:51 boot
-rw-r--r--. 1 rootroot 0 5月 4 00:04 history.txt
-rw-r--r--. 1 rootroot3978 5月 4 00:04 log.txt
drwxr-xr-x. 3 rootroot 22 9月 12 2018 ORCLfmap
drwxr-xr-x. 2 rootroot 6 9月 7 2017 rh
drwx------. 23 yangjie yangjie 4096 5月 3 20:24 yangjie
-rw-r--r--. 1 rootroot 0 5月 3 20:30 yangjie.txt
5)查找多个类型文件
比较符使用:
-a: and 并且
查找/etc/下面大于40k且小于50k的文件
[root@linuxprobe ~]# find /etc/ -size +40k -a -size -50k
/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin
/etc/selinux/targeted/active/modules/100/sysadm/hll
/etc/gconf/gconf.xml.defaults/%gconf-tree-ml.xml
/etc/brltty/fr-abrege.ctb
[root@linuxprobe ~]# find /etc/ -size +40k -a -size -50k -exec ls -al {} \;
-rw-r--r--. 1 root root 44725 9月 6 2018 /etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin
-rw-------. 1 root root 47464 9月 6 2018 /etc/selinux/targeted/active/modules/100/sysadm/hll
-rw-r--r--. 1 root root 43112 9月 6 2018 /etc/gconf/gconf.xml.defaults/%gconf-tree-ml.xml
-rw-r--r--. 1 root root 49286 4月 11 2018 /etc/brltty/fr-abrege.ctb
-o: or 或者
在当前目录下寻找所有的.sh文件或者.pdf文件
[root@linuxprobe ~]# touch a.pdf
[root@linuxprobe ~]# find ./ -name "*.sh" -o -name "*.pdf"
./p.sh
./a.pdf
+:大于
-: 小于
查找/etc/下大于20k的文件
[root@linuxprobe ~]# find /etc/ -size +200k
/etc/pki/ca-trust/extracted/openssl/ca-bundle.trust.crt
/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
/etc/udev/hwdb.bin
/etc/services
/etc/ssh/moduli
/etc/selinux/targeted/contexts/files/file_contexts
/etc/selinux/targeted/contexts/files/file_contexts.bin
/etc/selinux/targeted/policy/policy.31
/etc/selinux/targeted/active/file_contexts
/etc/selinux/targeted/active/policy.kern
/etc/selinux/targeted/active/policy.linked
/etc/gconf/schemas/ekiga.schemas
/etc/brltty/ko.ctb
/etc/brltty/zh-tw-ucb.ctb
/etc/brltty/zh-tw.ctb
/etc/mstflint/ca-bundle.crt
**6)按权限查找:-perm **
a、在/bin目录下搜素权限等于775且大于8M的文件或者目录
[root@linuxprobe ~]# find /bin/ -size +8M -a -perm 755 -exec ls -al {} \;
-rwxr-xr-x. 1 root root 10527312 6月 10 2014 /bin/virtuoso-t
-rwxr-xr-x. 1 root root 8885408 6月 10 2014 /bin/doxygen
b、在/bin目录下搜索权限至少有644的文件或者目录
[root@linuxprobe ~]# find /bin/ -perm 644|wc -l #/bin下面权限为644的文件或者目录只有2个
2
[root@linuxprobe ~]# find /bin/ -perm -644|wc -l #/bin下面权限至少为644的文件或者目录有3046个
3046
c、在系统中查看权限至少为777的目录或文件
[root@linuxprobe ~]# mkdir ccc
[root@linuxprobe ~]# chmod 777 ccc
[root@linuxprobe ~]# mkdir test
[root@linuxprobe ~]# chmod 1777 test
[root@linuxprobe ~]# ll -d test
drwxrwxrwt. 2 root root 6 5月 6 20:14 test
[root@linuxprobe ~]# touch a.sh
[root@linuxprobe ~]# chmod 4777 a.sh
[root@linuxprobe ~]# ll -d test
drwxrwxrwt. 2 root root 6 5月 6 20:14 test
[root@linuxprobe ~]# ll -d a.sh
-rwsrwxrwx. 1 root root 0 5月 6 20:14 a.sh
[root@linuxprobe ~]# find /root/ -perm 777
/root/ccc
[root@linuxprobe ~]# find /root/ -perm -777
/root/ccc
/root/test
/root/a.sh
7) 设置查找的目录深度
-maxdepth 1 #只能找目录第一层的文件和目录
查找/bin目录下权限等于755的可执行文件
[root@linuxprobe ~]# find /bin/ -maxdepth 1 -a -perm 755 |wc -l
2717
8)根据用户ID进行查询
寻找系统中所有属于用户yangjie的目录并且复制到/root/yg/目录下
find / -user yangjie -exec cp {} /root/yg/ \;
find: ‘/proc/6140/task/6140/fd/5’: 没有那个文件或目录
find: ‘/proc/6140/task/6140/fdinfo/5’: 没有那个文件或目录
find: ‘/proc/6140/fd/6’: 没有那个文件或目录
2. 命令的判断
2.1 三个特殊符号: ; && ||
1) ;分号
;不考虑命令的相关性,可连续执行。;不保证命令全部执行成功,只是会按顺序执行,即便前面命令错误,后面的命令也会正常执行;
[root@linuxprobe ~]# sync;ll / |wc -l;ll /root/xxxxxx
27
ls: 无法访问/root/xxxxxx: 没有那个文件或目录
2)&&逻辑且
&&只有当前面的命令执行成功时,后面的命令才会继续执行。
[root@linuxprobe ~]# cd /opt && touch a.txt && ll a.txt # 先进入/opt目录然后创建a.txt然后查看
-rw-r--r--. 1 root root 0 5月 6 20:47 a.txt
[root@linuxprobe opt]# cd /yg && touch a.txt && ll a.txt # 先进入/yg目录然后创建a.txt然后查看
-bash: cd: /yg: 没有那个文件或目录
经典用法:源码编译
./configure && make -j 4 && make install
3)|| 逻辑或
||逻辑或:
a||b 如果a命令执行成功则不执行b命令,如果a命令执行失败则执行b命令。
查看/opt/目录下是否有yg这个文件夹,如果没有则创建一个
[root@linuxprobe opt]# ll /opt/yg || mkdir /opt/yg
ls: 无法访问/opt/yg: 没有那个文件或目录
[root@linuxprobe opt]# ll -d /opt/yg
drwxr-xr-x. 2 root root 6 5月 6 20:57 /opt/yg
进入/opt/yg文件夹,如果进入则什么都不干,否则在当前路径创建a.txt文件
[root@linuxprobe opt]# cd /opt/yg || touch a.txt
[root@linuxprobe yg]# pwd
/opt/yg
[root@linuxprobe yg]# ll
总用量 0
4)总结
命令情况 | 说明 |
---|---|
命令1 && 命令2 | 如果命令1执行,且执行正确(\(?=0),然后执行命令2<br>如果命令1执行完成,但是执行错误(\)?≠0),那么不会执行命令2 |
命令1 || 命令2 | 如果命令1执行,且执行正确(\(?=0),那么不会执行命令2<br>如果命令1执行,但是执行错误(\)?≠0),那么命令2执行 |
linux中多条命令是从左到右、从前到后、从上到下依次执行的,如下所示:
进入/opt/yg目录,如果不存在则创建/opt/yg/文件夹,然后在/opt/yg文件夹下面穿件123.txt,并且查看
[root@linuxprobe yg]# cd /opt/yg || mkdir /opt/yg && touch /opt/yg/123.txt && ll /opt/yg/123.txt
-bash: cd: /opt/yg: 没有那个文件或目录
-rw-r--r--. 1 root root 0 5月 6 21:16 /opt/yg/123.txt
---END---
---2019-5-4 0:25:45---
学习笔记:CentOS 7学习之十二:查找命令的更多相关文章
- Verilog学习笔记基本语法篇(十二)········ 编译预处理
h Verilog HDL语言和C语言一样也提供编译预处理的功能.在Verilog中为了和一般的语句相区别,这些预处理语句以符号"`"开头,注意,这个字符位于主键盘的左上角,其对应 ...
- JavaSE 学习笔记之Import 导入(十二)
Import - 导入:类名称变长,写起来很麻烦.为了简化,使用了一个关键字:import,可以使用这个关键字导入指定包中的类.记住:实际开发时,到的哪个类就导入哪个类,不建议使用*. import ...
- 学习笔记:CentOS7学习之二十五:shell中色彩处理和awk使用技巧
目录 学习笔记:CentOS7学习之二十五:shell中色彩处理和awk使用技巧 25.1 Shell中的色彩处理 25.2 awk基本应用 25.2.1 概念 25.2.2实例演示 25.3 awk ...
- 学习笔记:CentOS7学习之二十四:expect-正则表达式-sed-cut的使用
目录 学习笔记:CentOS7学习之二十四:expect-正则表达式-sed-cut的使用 24.1 expect实现无交互登录 24.1.1 安装和使用expect 24.2 正则表达式的使用 24 ...
- 学习笔记:CentOS7学习之二十二: 结构化命令case和for、while循环
目录 学习笔记:CentOS7学习之二十二: 结构化命令case和for.while循环 22.1 流程控制语句:case 22.2 循环语句 22.1.2 for-do-done 22.3 whil ...
- 学习笔记:CentOS7学习之二十:shell脚本的基础
目录 学习笔记:CentOS7学习之二十:shell脚本的基础 20.1 shell 基本语法 20.1.1 什么是shell? 20.1.2 编程语言分类 20.1.3 什么是shell脚本 20. ...
- 阅读《LEARNING HARD C#学习笔记》知识点总结与摘要二
今天继续分享我的阅读<LEARNING HARD C#学习笔记>知识点总结与摘要二,仍然是基础知识,但可温故而知新. 七.面向对象 三大基本特性: 封装:把客观事物封装成类,并隐藏类的内部 ...
- 学习笔记:CentOS7学习之十八:Linux系统启动原理及故障排除
目录 学习笔记:CentOS7学习之十八:Linux系统启动原理及故障排除 18.1 centos6系统启动过程及相关配置文件 18.1.1 centos6系统启动过程 18.1.2 centos6启 ...
- 学习笔记:CentOS7学习之十六:LVM管理和ssm存储管理器使用
目录 学习笔记:CentOS7学习之十六:LVM管理和ssm存储管理器使用 16.1 LVM的工作原理 16.1.1 LVM常用术语 16.1.2 LVM优点 16.2 创建LVM的基本步骤 16.2 ...
- 学习笔记:CentOS7学习之十五: RAID磁盘阵列的原理与搭建
目录 学习笔记:CentOS7学习之十五: RAID磁盘阵列的原理与搭建 14.1 RAID概念 14.1.1 RAID几种常见的类型 14.1.2 RAID-0工作原理 14.1.3 RAID-1工 ...
随机推荐
- luogu 4234 最小差值生成树 LCT
感觉码力严重下降~ #include <bits/stdc++.h> #define N 400006 #define inf 1000000000 #define setIO(s) fr ...
- HDU 5852 Intersection is not allowed! ( 2016多校9、不相交路径的方案、LGV定理、行列式计算 )
题目链接 题意 : 给定方格中第一行的各个起点.再给定最后一行与起点相对应的终点.问你从这些起点出发到各自的终点.不相交的路径有多少条.移动方向只能向下或向右 分析 : 首先对于多起点和多终点的不相交 ...
- vue项目更换目录后执行npm run dev 就报错(新手进)
在我们搭建好一个VUE项目的环境后,觉得这个项目存放的位置不好,想移动一下,但是移动后我们发现执行npm run dev就会报下面的错误: 明明只是移动了一下位置,就报错,实在是太恶心了. 但是只要我 ...
- python_glob模块的使用
glob是Python自己带的一个文件操作相关模块,用它可以查找符合自己目的的文件,就类似于Windows下的文件搜索,支持通配符操作,*,?,[]这三个通配符,*代表0个或多个字符,?代表一个字符, ...
- Yet Another Division Into Teams
E. Yet Another Division Into Teams 首先要想明白一个东西,就是当一个小组达到六个人的时候,它一定可以拆分成两个更优的小组. 这个题可以用动态规划来写,用一个数组来保存 ...
- FatMouse's Speed
J - FatMouse's Speed DP的题写得多了慢慢也有了思路,虽然也还只是很简单的DP. 因为需要输出所有选择的老鼠,所以刚开始的时候想利用状态压缩来储存所选择的老鼠,后面才发现n太大1& ...
- 线程的join()方法
官网描述 join public final void join() throws InterruptedException Waits for this thread to die. An invo ...
- C++ #include<algorithm>
今天下午大致学完了进阶指南中algorithm头文件下的内容,在这里进行一个总结. reverse翻转 顾名思义,reverse进行的操作就是翻转原来的顺序,理解非常简单,故不赘述. 操作样例 ...
- python itern机制的
这些变量很可能在许多程序中使用. 通过池化这些对象,Python可以防止对一致使用的对象进行内存分配调用. 1.介于数字-5和256之间的整数 2.字符串仅包含字母.数字或下划线
- Leetcode题目49.字母异位词分组(中等)
题目描述: 给定一个字符串数组,将字母异位词组合在一起.字母异位词指字母相同,但排列不同的字符串. 示例: 输入: ["eat", "tea", "t ...