我正在寻找一种方法来搜索名为“ XYHello.pdf”或“ BDHello.pdf”的某些文件,因此基本上在带有子文件夹的目录中搜索“ * Hello.pdf”并导出找到的文件,包括该文件的路径一个文本文件。
因此,最后我有了一个列表,其中包含所有找到的文件,包括列表中的路径。我自发地想到了Linux命令查找。
find . -type f -iname "*Hello.pdf"
但是问题是我需要列表中文件的完整路径。
答案 0 :(得分:0)
find $PWD -type f -iname "*Hello.pdf"
或
find . -type f -iname "*Hello.pdf" -exec realpath {} \;