grep on lynx 命令

grep on lynx command

我想在 lynx 命令上 grep 结果

lynx -head -dump http://abdsadsac.org

该命令的结果

Looking up 111.111.111.111:9004
Making HTTP connection to 111.111.111.111:9004
Alert!: Unable to connect to remote host.

lynx: Can't access startfile http://abdsadsac.org

我希望该词替换为 0 或向下,我尝试创建 bash 脚本,但该命令仍然显示。我想要的结果是。

#lynx -head -dump http://abdsadsac.org
Down

已经尝试在 bash 上使用 if else 但仍然无效。

如何使用退出代码确定站点是否已启动?

例如:

$ lynx -head -dump http://abdsadsac.org 2> /dev/null || echo Down
Down