mirror of https://github.com/actions/toolkit
12 lines
180 B
Batchfile
12 lines
180 B
Batchfile
|
@echo off
|
||
|
setlocal
|
||
|
set index=0
|
||
|
|
||
|
:check_arg
|
||
|
set arg=%1
|
||
|
if not defined arg goto :eof
|
||
|
set "arg=%arg:"=<quote>%"
|
||
|
echo args[%index%]: "%arg%"
|
||
|
set /a index=%index%+1
|
||
|
shift
|
||
|
goto check_arg
|