实用程序,用于在单个可滚动列中显示多个短文本文件的内容


1

是否有Windows实用程序,可让您搜索大量的小型文本文件,并在单个可滚动的列中不仅显示找到的文件的列表,而且还显示所有匹配文件的内容,并用行分隔每个匹配文件,结果是否可以按不同标准排序?

Answers:


1

如果您借用Unix实用程序(例如,通过安装CygwinGnuWin32unxutils等),则可以结合使用grep和来实现。cat

 cat `grep -l target *.txt | sort {options}`

或者可能

 grep -l target *.txt | sort {options} | xargs -n 1 cat blanklines.txt

您可能可以使用Windows Powershell来完成。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.