Created
January 17, 2018 09:43
-
-
Save gocha/a83caa763287e7e5ea156d36f1a95a94 to your computer and use it in GitHub Desktop.
Print command-line arguments (Windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo [%%*] %* | |
echo [%%0] %0 | |
echo [%%1] %1 | |
echo [%%2] %2 | |
echo [%%3] %3 | |
echo [%%4] %4 | |
echo [%%5] %5 | |
echo [%%6] %6 | |
echo [%%7] %7 | |
echo [%%8] %8 | |
echo [%%9] %9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment