What is the function of "%*" in "[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\exefile\shell\open\command] @="\"%1\" %*""?
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
Originally posted by lingbm at 2008-1-30 00:11:
Wildcards~~Is that right~~Hehe The above shouldn't use this method to explain ah`~
@echo off
call :xxx A B C D E F G H I J K
pause
exit
:xxx
echo %1 %2 %3 ....
goto:eof
@echo off
call :xxx A B C D E F G H I J K
pause
exit
:xxx
echo %*
goto:eof