Search

如何遞歸查找目錄上包含+號的所有文件?

  • November 2, 2019

我嘗試了很多建議,但沒有任何效果。我必須在名稱上的任何位置找到所有包含 + 符號的文件,例如:

  • 你好+世界.jpg
  • A + 好 + 文件 + 名稱 + to + find.png

使用 Ubuntu 16.04 x64

這不應該比find path/to/directory/ -name '*+*'

前任。

$ find . -name '*+*'
./foo/list89988777,,,,,+--.txt
./foo/+
./dir/A + good + file + name + to + find.png

-type f如果要將結果限制為僅正常文件,請添加。

引用自:https://unix.stackexchange.com/questions/550081