- Jun
- 570
- 4
The help file says that the special character string %* represents, and I quote: "the complete command tail, unmodified by SHIFT". However, the following batch file
when run with the argument "test" (without the quotes) produces the following output:
WHOA! That's not what it produces. That's what copying and pasting from the TCMD17 screen produces (another bug?). Here's what I actually see on the screen:
-- Jay
echo The number of arguments is %#
echo Command tail is :%$:
echo Command tail is :%*:
echo Command tail is :%$:
echo Command tail is :%*:
when run with the argument "test" (without the quotes) produces the following output:
echo The number of arguments is %#
echo Command tail is :%$:
echo Command tail is :%*:
echo Command tail is :%$:
echo Command tail is :%*:
WHOA! That's not what it produces. That's what copying and pasting from the TCMD17 screen produces (another bug?). Here's what I actually see on the screen:
echo The number of arguments is 1
echo Command tail is :test:
echo Command tail is :*:
So it appears that "%*" is not working. For me, it doesn't seem to be working in version 16 either.echo Command tail is :test:
echo Command tail is :*:
-- Jay