标签: batch-file
我想在每个文件的txt文件目录中添加一行特定的行。以下是我正在使用的代码:
For %%f in (*.txt) do echo "Computer String : %%f" > newFile.txt type %%f >> newFile.txt type newFile.txt > %%f
但是,只要执行此操作,就不会发生任何变化。有什么建议 ?