Linux

Linux find 命令獲取文件中的所有文本並列印文件路徑

  • December 15, 2021

我需要獲取文件夾中匹配文件中的所有文本,但同時還需要獲取匹配的文件路徑。你能告訴我,我怎樣才能得到匹配的文件路徑以及使用下面的命令

find . -type f -name release.txt | xargs cat

執行catviafind並使用-print返回文件名:

find . -type f -name release.txt -print -exec cat '{}' \;

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