方法1:

举例说明:
当前目录下找 foo文件或者fOO文件
find ./ -name "f[Oo][Oo]" -print



方法2:


find / -name "f[a...b][A...C]o" -print

等等选项,上面这个命令查询到 faAo,fbCo等等文件,看看手册


方法3:

Linux使用find命令搜索文件时如果不清楚文件的名称中是否包含的大写,你可以使用 -iname参数来忽略大小写.

[root@Blinux test]# ll
总用量 0
-rw-rw-r-- 1 Blinux root 0 12月 16 07:42 China
[root@Blinux test]# find ./ -name sbso_1988
[root@Blinux test]# find ./ -iname sbso_1988
./Sbso_1988



GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐