gpt4 book ai didi

linux - 查找命令输出不一致,通配符无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 09:16:46 25 4
gpt4 key购买 nike

我正在使用 find 命令创建我想用于分发包的文件列表。但 find 无法获取所有文件的列表

下面是我的目录结构

.
├── 1.cpp
├── test
│   └── 1.cpp
└── test1
├── 1.cpp
└── test11
├── 1.h
└── 2.cpp

下面是命令及其输出(注意:它不带./test1/test11/2.cpp)

$ find . -name *.cpp
./test/1.cpp
./1.cpp
./test1/1.cpp

然而,当我使用特定名称时,它能够找到文件

$ find . -name 2.cpp
./test1/test11/2.cpp

最佳答案

这是因为 *.cpp 被扩展为 1.cpp 因为在当前目录中有匹配使用引号 "*.cpp"或转义星号 \*.cpp 以避免扩展并将星号文字作为查找的参数传递。

关于linux - 查找命令输出不一致,通配符无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46704717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com