By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!R:\>alias test=`echo %#`
R:\>test
0
R:\>test 1 2 3
3 1 2 3
echo %#
R:\>test.btm
echo 0
0
R:\>test.btm 1 2 3
echo 3
3
R:\>alias nargs `set argv=%# & echo %argv`
R:\>nargs
0
R:\>nargs 1 2 3
3 1 2 3
Code:
Code:R:\>alias test=`echo %#` R:\>test 0 R:\>test 1 2 3 3 1 2 3
v:\> do i=1 to 3 (echo %i) 1 2 3
Usage : DO [n | FOREVER]