bat如何将一段文字添加到指定的文件中并将原来的内容删除

2024-11-27 21:00:14
推荐回答(2个)
回答1:

@echo off
(
echo 1
echo 2
)>test.txt

回答2:

echo 123>a.txt
这样就把123这段文字添加到a.txt文本中了。