Leaked source code of windows server 2003
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.

12 lines
171 B

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