gpt4 book ai didi

windows - Powershell 脚本 : Can't read return value of executed program

转载 作者:可可西里 更新时间:2023-11-01 09:22:26 29 4
gpt4 key购买 nike

我正在使用 PowerShell 运行一个脚本,该脚本执行 wget 以获取网页(一个简单的数据库导入脚本)并分析其输出(错误消息或“OK”)。

我正在使用 this previous question 的答案中的代码我的。

$a = c:\path_to_wget\wget.exe --quiet -O - "http://www.example.com/import_db"
$rc = $a.CompareTo("OK")
exit $rc

当 wget 操作的结果是 404 - 并且 wget 可能返回错误级别 1 或 127 - 我从 PowerShell 收到以下错误消息:

You cannot call a method on a null-valued expression.

这显然是指我调用了 CompareTo() 函数。

但是,wget 得到执行并输出一些东西。

我怀疑在这种情况下 wget 会输出到错误控制台,而这不会被我的 $a 操作捕获。

如何重定向错误输出以便它被我的脚本捕获?

男孩,我肯定会成为本月 PowerShell 标签中的问题王! :)

最佳答案

开始

# This will hold the last executed EXE return code
$LastExitCode
# For console apps, where 0 is true, else is false, this will hold either True or False
$?

至于读取 STDERR,我想最快的方法是使用流重定向运行脚本

$a = c:\path_to_wget\wget.exe --quiet -O - "http://www.example.com/import_db" 2>&1

关于windows - Powershell 脚本 : Can't read return value of executed program,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2044011/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com