I need to pass more than 10 arguments to a single batch file (shell script) but after the 9th argument it will not work (it will take from beginning)
code sample
echo Hello! This a sample batch file.
echo %1 %2 %3 %4 %5 %6 %7 %8 %9 %10 %11 %12 %13 %14 %15 %16
pause
>mybatchdotbat a b c d e f g h i j k l m n o p
can anyone give solution for this