菜鸟学Linux 第020篇笔记 find命令使用和命令组合条件

简介:

菜鸟学Linux 第020篇笔记  find命令使用和命令组合条件




grep, egrep, fgrep:文本查找


文件查找命令

locate

find


locate

非实时、模糊匹配 查找是根据全系统文件数据库进行的;

updatedb 手动生成文件数据库(注意有可能需要执行很长时间)

优点速度快

find

通过遍历指定目录中的所有文件完成查找

支持众多查找标准

实时查找、精确、速度慢


命令格式

find 查找路径 查找标准 查找到以后的处理动作



查找路径:默认为当前目录

查找标准:默认为指定路径下的所有文件

处理动作:默认为显示


查找标准:

-name 'filename' 对文件做精确匹配

支持通配:

任意长度任意字符

匹配任意单个字符

[] 匹配括号内任意单个字符

-iname  ‘Filename'  文件名匹配不区分大小写

-regex  PATTERN 基于正则表达式进行文件名匹配

-user  username 根据文件的属主来查找

-group  groupname 

-uid User ID

-gid Group ID

-nouser 没有属主的文件

-nogroup 查找没有属组的文件

-type 查找文件类型

f ordinary file

d direcotry

c 字符设备

b block device

l 符号连接

p 管道设备

s 套接字设备

-size #为数字

[+|-]#k 大于或小于#k

[+|-]#M

[+|-]#G

默认单位byte

-mtime 修改

-ctime 改变

-atime 访问

[+|-]#

-mmin 分钟

-cmin 分钟

-amin 分钟

[+|-]#

find /tmp -atime +30

-perm mode  以权限查找

find /tmp/ -perm 644  精确匹配

find /tmp/ -perm /644  只要有一位匹配就显示 或关系

find /tmp/ -perm -644 只要包含就显示 与关系

处理动作:默认为print

-print  显示

-ls 类似ls -l的形式显示每一个文件的详细

-ok command {} \; {}表示匹配到的 操作每次执行需要确认

-exec command {} \; 两个都是将找到文件执行其它动作,即命令(不需要确认)

find -name "*.sh" -a -perm -111 -exec chmod o-x {} \;


小练习:

1、查找/var目录下属主为root并且属组为mail的所有文件。

2、查找/usr目录下不属于root,bin,或student的文件;

3、查找/etc目录下最近一周内内容修改过且不属于root及student用户的文件;

4、查找当前系统上没有属主或属组且最近一天内曾被访问过的文件,

   并将其属主属组改为root;

5、查找/etc目录下大于1M的文件,并将其文件名写入/tmp/etc.largefiles文件中

6、查找/etc目录下所有用户都没有写权限的文件,显示出其详细信息;


德·摩根定律

非(P 且 Q) = (非 P) 或 (非 Q)

非(P 或 Q) = (非 P) 且 (非 Q)




Key

1. find /var -user root -a -group mail -a可加可不加


2. find /var -not -user root -o -not -user bin -o -not -user student

find /var -not \( -user root -a -not -user bin -a -not -user student )两种解法


3. find /etc -mtime -7 -not -user root -a -not -user student

find /etc -mtime -7 -not \( -user root -o -user tom \)


4. find / \( -nouser -o -nogroup \) -a -atime -1 -exec chown root:root {} \;

5. find /etc -size +1 >> /tmp/etc.largefiles


6. find /etc -not -perm /222


写命令错误总结:

1、用括号括起来的内容要加转义字符\ 且括号后不可紧跟参数

2、参数前要记得加-

3、要牢记德摩根定律







组合条件查找

-a  与关系

-o 或关系

-not  非

e.g.   find /tmp -nouser -a type d -ls

find /tmp/ -nouser -o -type d -ls 

find /tmp -not -type d

find /tmp -not -type d -a -not -type s -ls

德·摩根定律

非(P 且 Q) = (非 P) 或 (非 Q)

非(P 或 Q) = (非 P) 且 (非 Q)





测试条件:

整数条件

-le

-lt

-ge

-gt

-eq

-ne

字符测试

==

!=

>

<

-n

-z

文件测试

-e

-f

-d

-r

-w

-x

组合测试条件

-a 与关系

-o 或关系

! 非关系

if [ $# -gt 1 -a $# -le 3]

 [ $# -gt 8 -o $# -le 2]

[ $1 == 'Q' -o $1 == 'q' -o $1 == 'quit' -o $1 == 'Quit']

Script 1

求1-100所有偶数和奇数的和.

Key 1

#!/bin/bash

#

declare -i EVENSUM=0

declare -i ODDSUM=0


for I in {1..100}; do

  if [ $[$I%2] -eq 0 ]; then

EVENSUM+=$I

  else

ODDSUM+=$I

  fi

done

echo "odd=$ODDSUM even=$EVENSUM"

本文转自Winthcloud博客51CTO博客 ,原文链接http://blog.51cto.com/winthcloud/1865713如需转载请自行联系原作者


Winthcloud

相关文章
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
92 8
|
14天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
43 14
Linux 10 个“who”命令示例
|
3天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
52 20
|
3天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
24 7
|
23天前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
31 9
|
21天前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
27天前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
110 3
|
1月前
|
存储 运维 Linux
如何在 Linux 系统中使用 envsubst 命令替换环境变量?
`envsubst` 是 Linux 系统中用于替换文本中环境变量值的实用工具。本文分三部分介绍其工作原理、使用方法及实际应用,包括配置文件替换、脚本执行中环境变量替换和动态生成文件等场景,帮助用户高效利用 `envsubst` 进行开发和运维工作。
52 4
|
1月前
|
Linux
在 Linux 系统中,`find` 命令
在 Linux 系统中,`find` 命令
33 1
|
1月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
251 6
下一篇
DataWorks