Skip to content

Instantly share code, notes, and snippets.

@NKid
Last active August 19, 2020 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NKid/71f615cc9c38992598f2 to your computer and use it in GitHub Desktop.
Save NKid/71f615cc9c38992598f2 to your computer and use it in GitHub Desktop.
[拖放多檔案至批次檔] Drag and drop batch file for multiple files
@ECHO OFF
IF [%1]==[] GOTO EOF
:LOOP
ECHO %1
SHIFT
IF NOT [%1]==[] GOTO LOOP
:EOF
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment