求一个批处理命令。从把a.txt中的所有内容复制到该文件夹下其他多个.txt文件中。

2024年11月20日 03:23
有3个网友回答
网友(1):

@echo off
for /f %%i in ('dir/b *.txt') do copy a.txt %%i /y

网友(2):

ctrl+a直接全选复制粘贴即可,希望能帮到您

网友(3):

是覆盖还是追加?