I'm not sure exactly what's going on here, but it has something to do with the parsing of parentheses:
Code:
C:\>alias b=`echo ( %* )`
C:\>b foo bar fum
( ) foo bar fum
C:\>alias b=`echo ( %$ )`
C:\>b foo bar fum
( foo bar fum )
C:\>
But the help file only describes %$, not %*. I'm guessing %* is a spillover from batch files. If it works with aliases, it's only by accident. Anyway, that's my guess.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.