Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
257 B

@echo off
if "%1"=="" goto usage
set _sed=%1
:loop
shift
if "%1"=="" goto end
for %%f in (%1) do echo %%f... & sed -f %_sed% %%f >temp & copy temp %%f >nul
goto loop
:usage
echo USAGE: sedapply (sed script) [list of files to apply script to]
:end