Aquí hay 3 pasos combinados en una sola línea de comando:
@ren a.txt temp.tmp & @ren b.txt a.txt & @ren temp.tmp a.txt
Aquí se puede usar switch-filename.cmd :
@echo off
if not "%4"=="" call :help %0
if "%3"=="/?" call :help %0
if "%2"=="/?" call :help %0
if "%1"=="/?" call :help %0
if "%1"=="" call :help %0
if "%1"=="" goto :eof
if "%2"=="" call :help %0
if "%2"=="" goto :eof
setlocal
if "%3"=="" set ch=echo
if "%3"=="#ok#" set ch=
call :v1 %1 %2
endlocal
echo.
echo [%date% %time%] Completed!
goto :eof
:help
echo.
echo Syntax: %1 FullPath\FileName01.Ext FileName02.Ext [enter]
echo.
echo %1 C:\Win\Temp\SapGui_v1.txt SapGui_v5.txt [enter]
echo.
echo %1 \\Svr\Tmp\GuiSAP_v0.txt GuiSAP_v9.txt [enter]
echo.
goto :eof
:v0
%ch% ren %1 tmp_%~n1%~x1
%ch% ren %2 %~n1%~x1
%ch% ren %~p1tmp_%~n1%~x1 %~n2%~x2
goto :selesai
:v1
set f01=%1
set f02=%2
echo f01 = %f01%
echo f02 = %f02%
%ch% ren %1 tmp_%~n1%~x1
if "%f01:~0,2%"=="\\" (
%ch% ren \\%~p1%2 %~n1%~x1
%ch% ren \\%~p1tmp_%~n1%~x1 %~n2%~x2
) else (
%ch% ren %~p1%2 %~n1%~x1
%ch% ren %~p1tmp_%~n1%~x1 %~n2%~x2
)
echo.
echo f01 = %f01%
echo %f01:~0,2%
echo f02 = %f02%
echo %f02:~0,2%
set f01=
set f02=
goto :eof
Cualquier idea de mejora es bienvenida. :)