好吧。我有两个文件 file1 和 file2
文件 1
line1
helloa
hellob
line2
文件2
line3
helloc
hellod
helloe
line4
我想hello
用file2的行替换file1中的所有行,这些行是在一起的,有什么想法吗?
可以用这个语句来完成吗?
for /f "tokens=1,* delims==" %%a in ('find "hello" ^< file2') do set helloa=%%b
提前感谢您的回答