Facebook
From Abrupt Motmot, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 194
  1. @echo off
  2.  
  3. set /A i=1
  4. :argactionstart
  5. if -%1-==-- goto argactionend
  6. echo parameter%i% = %1
  7. set /A i=%i% + 1
  8. shift
  9. goto argactionstart
  10. :argactionend