如何复制文本文件中的行(C:\dos\crusoe\src.txt) 如果文本meghana
在其中,则将该行粘贴到另一个文件中(C:\dos\crusoe\trgt.txt)?
答案1
我相信在 Windows 上你会寻找findstr
-http://technet.microsoft.com/en-us/library/bb490907.aspx
例如:
findstr /x /c:<string> <source-file-name> > <target-file-name>
答案2
使用的示例find
:
(type "sourcefile" | find "Meghana" 2>nul) >"targetpath"