我需要编写一个脚本,可以将一行文本写入与批处理文件相同目录中的文本文件。
当前回答
@echo掉 标题写作使用批处理文件 颜色0
文本>文件名。txt echo附加文本>> Filename.txt
@ECHO OFF
Title Writing Using Batch Files
color 0a
echo Example Text > Filename.txt
echo Additional Text >> Filename.txt
其他回答
只使用一个代码块更容易,然后只需要一个重定向。
(
echo Line1
echo Line2
...
echo Last Line
) > filename.txt
Echo "blahblah"> TXT . TXT将删除TXT和blahblah在它的地方
Echo "blahblah">> TXT . TXT将在TXT中的新行上写入blahblah
我认为两者都会创建一个新的txt,如果不存在(我知道第一个)
上面写着“txt.txt”,如果需要,可以插入文件路径。例如C:\Users\<username>\desktop,这将把它放在他们的桌面上。
@echo掉 标题写作使用批处理文件 颜色0
文本>文件名。txt echo附加文本>> Filename.txt
@ECHO OFF
Title Writing Using Batch Files
color 0a
echo Example Text > Filename.txt
echo Additional Text >> Filename.txt
你可以使用copy con来写一篇长文本 例子: C:\COPY CON[驱动器:][路径][文件名] .... 内容 F6 复制1个文件
@echo off
(echo this is in the first line) > xy.txt
(echo this is in the second line) >> xy.txt
exit
两个>>意味着第二行将被追加到文件中(即第二行将在xy.txt的最后一行之后开始)。
这是xy.txt的样子:
this is in the first line
this is in the second line