|
server
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
CTP: Possible Issue
the CTP. I have several command line tools that take parameters in the format --flag. That is two dashes then the flag name. In CTP the double dashes are stripped and only the flag text is passed as a parameter. This can be recreated easily by entering the following three lines and checking the output. In PowerShell v1.0: 1> echo --test --test 2> echo '--test' --test In PowerShell v2.0 CTP: 1> echo --test test 2> echo '--test' --test Corey Miners |
|||||||||||||||||||||||