2025-04-27 07:49:33 -04:00

13 lines
171 B
Batchfile

@echo off
rem this is a little batch file to start a number of instances files to edit.
:loop
if "%1" == "" goto end
start wordpad %1
shift
goto loop
:end