我成功地设法在一长串带有findstr
. 我将findstr
' 的输出重定向到不同的文本文件,但是我需要删除输出行的起始部分,其中还包含源文件的引用。基地是下面的例子
echo testtest > testing.txt
findstr 'test' *.txt > output.txt //output is 'testing.txt:testtest'
我需要做这样的事情
echo testtest > testing.txt
findstr 'test' *.txt | *something* > output.txt //output is 'testtest'
警告:
我只能使用标准 CMD 命令,我不能在目标机器上安装新软件