Skip to content

Instantly share code, notes, and snippets.

@gocha
Created January 17, 2018 09:43
Show Gist options
  • Save gocha/a83caa763287e7e5ea156d36f1a95a94 to your computer and use it in GitHub Desktop.
Save gocha/a83caa763287e7e5ea156d36f1a95a94 to your computer and use it in GitHub Desktop.
Print command-line arguments (Windows)
@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