首先,我在韓國。所以我的英語會很糟糕。如何在不編輯其他行的情況下編輯文本文件(cmd)
我想編輯第三行,不用觸摸第一行和第二行。
前:
echo sample
echo sample
echo sample
echo sample
後:
echo sample
echo sample
echo hello
echo sample
就這樣。 不使用這個命令:
echo echo sample> test.txt
echo echo sample> test.txt
echo echo hello> test.txt
echo echo sample> test.txt
所以,我的意思是不是寫1,2,4的「回聲」和「樣本」的事情。 只有第三行的'回聲'。 我能做什麼?
我建議你[安裝cygwin](http://cygwin.com),然後你可以使用像sed和awk這樣的標準* nix工具,這樣的任務很簡單。 –
無法在'cmd'中「編輯」文件。您必須逐行閱讀並重寫整個文件(使用[for](https://ss64.com/nt/for_f.html))。 – Stephan