mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
fe4e569759
PR-URL: https://github.com/nodejs/node/pull/52810 Fixes: https://github.com/nodejs/node/issues/52740 Reviewed-By: Daniel Lemire <daniel@lemire.me> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
16 lines
290 B
Batchfile
Executable File
16 lines
290 B
Batchfile
Executable File
@echo off
|
|
setlocal enabledelayedexpansion
|
|
set argv=0
|
|
set "output="
|
|
for %%x in (%*) do (
|
|
Set /A argv+=1
|
|
if "!output!" == "" (
|
|
Set "output=%%~x"
|
|
) else (
|
|
Set "output=!output! %%~x"
|
|
)
|
|
)
|
|
@echo Raw '%*'
|
|
@echo Arguments: '%output%'
|
|
@echo The total number of arguments are: %argv%
|