联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
::genteman - 2007-12-19 -CMD@WinXP Pro ::contact amdaround@163.com @echo off setlocal enabledelayedexpansion if "%~1"=="" exit /b if not exist %~s1\nul exit /b cd "%~1" %~d1 :rec if exist "%cd%\*.txt" ( for /f "delims=" %%p in ('cd') do set filename="%%~np" type *.txt>"..\!filename: =!.txt" ) for /f %%i in ('dir "%cd%" /ad /b') do ( pushd "%cd%" cd "%%i" call :rec popd )
::genteman - 2007-12-19 -CMD@WinXP Pro ::contact amdaround@163.com rem @echo off if "%~1"=="" exit /b if not exist %~s1\nul exit /b for /r "%~1" %%i in (.) do ( cd "%%~fi" %%~di if exist *.txt type "*.txt">..\"%%~ni.txt" )
::genteman - 2007-12-19 -CMD@WinXP Pro ::contact amdaround@163.com rem @echo off if "%~1"=="" exit /b if not exist %~s1\nul exit /b for /f "delims=" %%i in ('dir "%~1" /ad /b /s') do ( cd "%%~fi" %%~di if exist *.txt type "*.txt">..\"%%~ni.txt" )