联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
dir/a/b *.txt >a.txt
@echo off&setlocal enabledelayedexpansion for /f %%i in ('dir/a/b/on *.txt') do ( set a=%%i for /f %%a in (!a!) do ( echo !a!:>>b.txt echo %%a>>b.txt) )
type *.txt >a.txt
@echo off & Setlocal for /f "delims=" %%a in ('dir /b /on *.txt') do ( if not exist allfile.txt set/p=<nul>allfile.txt >nul 2>&1 copy /y /a allfile.txt + "%%~a" allfile.txt ) start allfile.txt