上一主题: OSRedirect.clear 方法下一主题: OSRedirect.errout 方法


OSRedirect.errorOccurred 方法

该方法用于检查在远程执行期间是否发生错误。 如果发生错误,errout() 可能会提供错误说明。

该方法具有以下语法:

errorOccurred()

该方法返回以下值:

指示发生了错误。

指示未发生错误。

示例

执行无效命令并检查错误:

!! asdfghjk
if($$stdout.errorOccurred())
    ? "Error:", $$stdout.errout()
else
    ? $$stdout.output()

另请参阅:

! 命令-调用命令或子进程 (Cmdlet)

!! 命令-调用命令或子进程并自动捕获输出 (Cmdlet)

OSRedirect.errout 方法