Linux常用命令中,有些命令可以帮助我们查找二进制文件,帮助手册或源文件的位置,也有的命令可以帮助我们查找磁盘上的任意文件,今天我们就来看看这些命令如何使用。
which
which命令会在PATH变量指定的路径中,搜索某个系统命令的位置。例如:
bandit4@bandit:~/inhere$ which -a which #查看命令which所在位置,-a参数表示找出所有
/usr/bin/which
/bin/which
PATH变量有哪些内容呢?我们来看一下(不同电脑可能不同):
bandit4@bandit:~/inhere$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
PATH环境变量存放着一些路径信息,例如/usr/bin,当你在shell终端敲入一个命令,但是在PATH中包含的路径下没有时并且也不是内置命令时,就会提示:command not found。
whereis
whereis命令用于搜索程序的二进制文件,源代码文件或帮助文档。例如:
bandit4@bandit:~/inhere$ whereis ls #如果上述三者有,则三者都会显示。
ls: /bin/ls /usr/share/man/man1/ls.1.gz
bandit4@bandit:~/inhere$ whereis -m ls # -m:只查看ls的帮助手册
ls: /usr/share/man/man1/ls.1.gz
bandit4@bandit:~/inhere$ whereis -b ls # -b:只查找ls的二进制文件
ls: /bin/ls
bandit4@bandit:~/inhere$ whereis stdio.h #查找stdio.h头文件,和帮助手册
stdio: /usr/include/stdio.h /usr/share/man/man3/stdio.3.gz
同样地,它不能查找到内置命令。
type
type用于查看命令类型,一般有以下类型:
名称 | 描述 |
---|---|
alias | 别名 |
keyword | 关键字 |
builtin | 内置命令 |
file | 外部命令 |
而常见参数如下:
参数 | 描述 |
---|---|
-t | 输出类型名,如file |
-p | 如果是外部命令,则显示其所在路径 |
-a | 对于外部命令,它会显示命令路径,命令类型等信息 |
我们来看几个例子:
bandit4@bandit:~/inhere$ type ls
ls is aliased to `ls --color=auto'
bandit4@bandit:~/inhere$ type cd #cd是一个内置命令
cd is a shell builtin
bandit4@bandit:~/inhere$ type find
find is /usr/bin/find
bandit4@bandit:~/inhere$ type function #function是一个shell关键字
function is a shell keyword
bandit4@bandit:~/inhere$ type -a which #显示所有路径
which is /usr/bin/which
which is /bin/which
locate
前面所说的命令都限于查找命令,帮助手册或源文件,而locate用于快速查找任何文件。它从一个系统数据库进行文件查找,而不需要遍历磁盘,因此速度极快。通常该系统数据库每天更新一次(可以查看系统的/etc/cron.daily/mlocate,不同系统可能不一样)。
常见选项如下:
参数 | 描述 |
---|---|
-e |
仅查找存在的文件 |
-q |
安静模式,不会显示任何错误讯息 |
-n |
至多显示 n个输出 |
-r |
使用正规运算式 |
-i |
查找忽略大小写 |
-c |
打印匹配结果数量 |
假设当前目录早已存在以下文件:
locate.txt locate.log LOCATE.zip
我们来看一些实例。
## 快速查找文件
bandit4@bandit:~ locate locate.txt #查找locate.txt
/home/hyb/workspaces/shell/locate/locate.txt
## 查找存在的文件
bandit4@bandit:~ locate locate.txt #查找之前删除locate.txt
#虽然文件不存在,但是仍然被查找出来
/home/hyb/workspaces/shell/locate/locate.txt
bandit4@bandit:~ locate -e locate.txt #-e参数可以查找只存在的文件
#(由于该文件不存在,因此也不会被查找出来)
## 查找计算文件的数量
bandit4@bandit:~ locate -c locate.log #只计算查找到的数量
1
## 忽略大小写查找
bandit4@bandit:~ locate -i locate.zip
/home/hyb/workspaces/shell/locate/LOCATE.zip
## 使用正则表达式精确查找
# 普通的查找是模糊匹配的,因此只要目标名称中包含要搜索的名称,都会被搜索出来
bandit4@bandit:~ locate -r /locate.log$ #查找以/locate.log结尾的文件
locate查找存在的一个问题是,如果最近有文件被删除,它仍然能找出来,最近有文件增加,它却找不到。也就是说,它的查找并不具备实时性。当然我们可以手动执行updatedb
命令来更新数据库(可能需要root权限)。
find
find命令是linux下一个强大的查找命令。与locate命令相比,它需要遍历磁盘文件,因此查找速度较慢,但正因如此,它的实时性比locate好得多。另外一方面,find命令的查找条件比locate丰富得多。
最常用的恐怕就是以文件名为条件了,涉及参数-name
,-iname
,例如:
当前目录下查找以sort开头的文件:
bandit4@bandit:~/inhere$ find ./ -name "*file*"
./-file09
./-file06
./-file01
./-file02
bandit4@bandit:~/inhere$ find ./ -iname "*FILE*" # 忽略大小写
./-file09
./-file06
./-file01
./-file02
有时候需要查找特定权限的文件,可以使用-perm参数,例如查找当前目录下权限为777的文件:
find ./ -perm 777
./test
./sort.txt
涉及参数-type
,例如要查找当前目录下的符号链接文件:
bandit4@bandit:~/inhere$ find -type f
./-file09
./-file06
./-file01
主要类型有:
类型 | 描述 |
---|---|
f | 普通文件 |
d | 目录 |
b | 块设备文件 |
c | 字符设备文件 |
l |
符号链接 |
s | 套接字 |
p | 管道文件 |
涉及参数-size,例如:
bandit4@bandit:~/inhere$ find ./ -size 1k #查找当前目录下小于1k的文件
./-file09
./-file06
./-file01
./-file02
./-file05
bandit4@bandit:~/inhere$ find -size +1w#查找当前目录下大于1w的文件
.
./-file09
./-file06
./-file01
./-file02
./-file05
常用单位有:
单位 | 描述 |
---|---|
k | 千字节 |
M | 兆字节 |
G | 吉字节 |
c | 字节 |
b | 块,一般为512字节 |
w | 字大小,两个字节 |
涉及参数-user,-nouser,-group,-nogroup等,例如:
find ./ -user root #查找当前目录下root用户的文件
find ./ -nouser #查找当前目录下root用户的被删除的文件
# -group,-nogroup类似的用法,只不过条件是用户组。
涉及参数-mtime,-atime,-ctime,-newer,-anewer,-cnewer,-amin,-cmin等,例如:
find ./ -mtime 3 #查找3天前更改过的文件
find ./ -mtime -3 #查找3天内更改过的文件
find ./ -mtime 0 #查找今天更改过的文件
find ./ -newer sort.txt #查找比sort.txt修改时间更新的文件
find ./ -anewer sort.txt #查找比sort.txt访问时间更新的文件
find ./ -amin 5 #查找5分钟之前访问过的文件
注:
指令 | 描述 |
---|---|
-atime |
最后访问时间 |
-mtime |
最后修改时间 |
-ctime |
最后修改时间,这里包括属性和权限 |
find命令的查找条件比较多,而其用法也非常丰富,本文仅简单介绍,后面的文章将会介绍find的一些高级用法。
strings命令在对象文件或二进制文件中查找可打印的字符串。字符串是4个或更多可打印字符的任意序列,以换行符或空字符结束。 strings命令对识别随机对象文件很有用。
-a --all:扫描整个文件而不是只扫描目标文件初始化和装载段
-f –print-file-name:在显示字符串前先显示文件名
-n –bytes=[number]:找到并且输出所有NUL终止符序列
- :设置显示的最少的字符数,默认是4个字符
-t --radix={o,d,x} :输出字符的位置,基于八进制,十进制或者十六进制
-o :类似–radix=o
-T --target= :指定二进制文件格式
-e --encoding={s,S,b,l,B,L} :选择字符大小和排列顺序:s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
命令 | 描述 |
---|---|
which | 命令可用于查找命令位置。不能查找内置命令位置。 |
whereis | 可查找命令的位置,手册,源文件等。不能查找内置命令位置。 |
locate | 查找数据库,查找速度块;缺点:模糊匹配,匹配路径,实时性差。 |
find | 遍历磁盘,准确查找,功能丰富;缺点:速度较慢。 |
strings | 在对象文件或二进制文件中查找可打印的字符串 |
find
高级用法bandit4@bandit:~/inhere$ find -type d -empty查 # 找空目录只需要利用-empty参数即可
! -name
例如,我们按照名字查找某一类文件,但是又不想找到其中的.log文件时,可以使用!逻辑运算符查找,例如:
bandit4@bandit:~/inhere$ find -name "*file*" ! -name "*file02" # 排除*file02文件
./-file01
./-file05
./-file03
./-file04
./-file00
-path
我们在查找某些文件时,可能已经知道某个目录有,但又不想浪费时间再次查找,可以使用-prune
参数和-path
参数,例如:
find . -path ./test -prune -o -name "*.txt"
这里查找txt文件,但是排除test目录下的txt文件。但是注意./test不能写成./test/,否则结果将不正确。测试的时候,发现./test仍然会出现在查找结果中。另外 -prune
不要和-depth(-delete)
一起使用,否则-prune将不起作用
如果需要排除多个目录呢?
bandit4@bandit:~/inhere$ find . -path /home/bandit4 -prune -o -name "*file*"
./-file09
./-file06
./-file01
注意,这里(
和 \)
前后都有空格。它是告诉shell后面的字符不解释,让find命令自己解释其作用。
当然了,排除目录还可以使用!
逻辑符号。例如:
find ./ -name "*.txt" ! -path "./test"
对查找到的文件执行命令操作
在查找到文件之后,我们可能需要对它进行操作,例如删除,移动等。我们可以利用xargs。例如:
find -name "*.log" |xargs rm -f #找到.log文件后,删除
find -name "*test" |xargs chmod 755 #将找到文件的权限修改为755
find -name "*test" |xargs grep "hello" #查找包含hello字符串的test文件
xargs后面跟的是要执行的命令,这里只是简单举例。
我们还可以利用-exec
参数。例如:
find ./ -name "*txt" -exec rm -f {} \; #找到后删除
find ./ -name "*txt" -exec cp {} ./test \; #找到后复制至test目录下
这里的{}
指代了查找到的内容。;作为命令参数结束的标志,因此是必要的。rm 带上-i
参数,可进行交互式删除,即需要询问。
我们也可以利用-ok
参数,它与-exec的差别在于,它会询问用户,很适合用于删除:
find ./ -name “*.log” -ok ls -al {} ;
< ls … ./locate/locate.log > ?
Q1. 查找文件夹下类型为text的文件
https://overthewire.org/wargames/bandit/bandit5.html
bandit4@bandit:~/inhere$ ls
-file00 -file01 -file02 -file03 -file04 -file05 -file06 -file07 -file08 -file09
bandit4@bandit:~/inhere$ file --mime-type ./* | grep text
./-file07: text/plain
Q2. 查找符合以下条件的文件
requirements:
bandit5@bandit:~/inhere$ find . -type f -size 1033c ! -executable -exec file {} + | grep -w text
./maybehere07/.file2: ASCII text, with very long lines
Q3. The password for the next level is stored somewhere on the server and has all of the following properties:
bandit6@bandit:~$ find / -size 33c -group bandit6 -user bandit7 | grep bandit7
/var/lib/dpkg/info/bandit7.password
Q4. The password for the next level is stored in the file data.txt next to the word millionth
bandit7@bandit:~$ grep millionth data.txt
millionth cvX2JJa4CFALtqS87jk27qwqGhBM9plV
Q5. The password for the next level is stored in the file data.txt and is the only line of text that occurs only once
bandit8@bandit:~$ sort data.txt | uniq -u
UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
The password for the next level is stored in the file data.txt in one of the few human-readable strings, beginning with several ‘=’ characters.
bandit9@bandit:~$ strings data.txt | grep "="
2========== the
========== password
>t= yP
rV~dHm=
========== isa
=FQ?P\U
= F[
pb=x
J;m=
=)$=
========== truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk
iv8!=
Q6. The password for the next level is stored in the file data.txt, which contains base64 encoded data
bandit10@bandit:~$ base64 -d data.txt
The password is IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR