這是我的第一篇文章,對任何錯誤表示歉意。一元運算符「 - 」後缺少表達式
我跑在Windows PowerShell中DOTNET命令,它給了我如何使用它的說明:
Usage: dotnet [host-options] [command] [arguments] [common-options]
Common options:
-v|--verbose Enable verbose output
-h|--help Show help
當我運行命令
dotnet run -h|--help
它給我的以下錯誤:
At line:1 char:17
+ dotnet run -h|--help
+ ~
Missing expression after unary operator '--'.
At line:1 char:15
+ dotnet run -h|--help
+ ~~
Expressions are only allowed as the first element of a pipeline.
At line:1 char:17
+ dotnet run -h|--help
+ ~~~~
Unexpected token 'help' in expression or statement.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : MissingExpressionAfterOperator
任何想法爲什麼會發生這種情況?爲什麼命令沒有按預期顯示幫助?到處搜索,我一直無法得出確鑿的答案。
使用'dotnet -h'或'dotnet --help'。 – Phylogenesis