Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用find当前目录下的文件查找所有 *.cpp,这些文件在 dirname 和 basename 中都不包含空格。我知道我需要使用-wholename标志,但我找不到合适的正则表达式语法。
find
-wholename
与正则表达式一起使用find:
find . -type f -regex "[^ ]*.cpp"