bat批处理文件_输出内容到文本

文章目录

  • 1、echo str `>` test.txt(覆盖原有内容)
  • 2、echo str `>>` test.txt(不覆盖原有内容,追加)

1、echo str > test.txt(覆盖原有内容)

2、echo str >> test.txt(不覆盖原有内容,追加)

%覆盖原有内容%
echo 111 >test.txt
echo 222 >test.txt
%不覆盖原有内容,追加%
echo 333 >>test.txt 
set a=444
echo %a% >>test.txt
pause

bat批处理文件_输出内容到文本_第1张图片
最后的txt文本内容:
bat批处理文件_输出内容到文本_第2张图片

你可能感兴趣的:(#,Windows-技能,bat)