1

这是一个小的 bash 代码,它最初创建一个临时文件,然后tmpfile使用成功或失败的操作删除创建的临时文件。 mktempwget

#!/bin/bash -ex
tmpfile="$(mktemp)"
wget -q $1 -O /tmp/temp.txt
if [ $? -eq 0 ] ; then
    echo "wget success"
    rm "${tmpfile}"
else
    echo "wget fail" 
    rm "${tmpfile}"
fi

当将正确的 url 传递给脚本时,wget成功时会检查使用的最后一个命令的返回值,$?并按预期删除临时文件。

root@box:/# ./temp.sh www.google.com
++ mktemp
+ tmpkeyfile=/tmp/tmp.83uGY1NH5B
+ wget -q www.google.com -O /tmp/temp.txt
+ '[' 0 -eq 0 ']'
+ echo 'wget success' 
wget success
+ rm /tmp/tmp.83uGY1NH5B

但是,如果一个导致wget不成功的 url,例如 404-not found 等,我认为最后执行的wget应该失败if检查并删除块中的临时文件else。这不会发生,因为wget只是返回没有任何最后的返回值,如下所示。wget当调用失败 时,这确实不会删除临时文件。

root@box:/# ./temp.sh www.googlegoogle.com
++ mktemp
+ tmpkeyfile=/tmp/tmp.pSL7hKyAlz
+ wget -q www.googlegoogle.com -O /tmp/temp.txt
root@box:/#

我可以知道如何以wget任何方式捕获每个返回失败代码。

4

1 回答 1

1

Question:

May I know how to capture every return failure code of wget by any means.

It should response every return http status code:

wget --server-response http://googlegoogle/nx.file 2>&1 | awk '/^  HTTP/{print $2}'

EDIT: I have tried your code, and it works fine

bash -x ./abc.sh www.googlegoogle.com
++ mktemp
+ tmpfile=/tmp/tmp.pwa08vGnjo
+ wget -q www.googlegoogle.com -O /tmp/temp.txt
+ '[' 4 -eq 0 ']'
+ echo 'wget fail'
wget fail
+ rm /tmp/tmp.pwa08vGnjo

This is the list of exit codes for wget:

0       No problems occurred
1       Generic error code
2       Parse error — for instance, when parsing command-line options, the .wgetrc or .netrc…
3       File I/O error
4       Network failure
5       SSL verification failure
6       Username/password authentication failure
7       Protocol errors
8       Server issued an error response

Check this: Link

于 2015-10-29T06:21:36.623 回答