linux – 使用Wget的Shell脚本 – 如果else嵌套在for循环中

前端之家收集整理的这篇文章主要介绍了linux – 使用Wget的Shell脚本 – 如果else嵌套在for循环中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试创建一个shell脚本来读取下载URL列表,以查找它们是否仍处于活动状态.我不确定我当前的脚本有什么问题,(我是新手),任何指针都会有很大的帮助!

user @ pc:〜/ test#cat sites.list

http://www.google.com/images/srpr/logo3w.png
http://www.google.com/doesnt.exist
notasite

脚本:

#!/bin/bash
for i in `cat sites.list`
do
wget --spider $i -b
if grep --quiet "200 OK" wget-log; then
echo $i >> ok.txt
else
echo $i >> notok.txt
fi
rm wget-log
done

按原样,脚本将所有内容输出到notok.txt – (第一个google网站应该转到ok.txt).
但如果我跑:

wget --spider http://www.google.com/images/srpr/logo3w.png -b

然后做:

grep "200 OK" wget-log

它没有任何问题地抓住字符串.我用语法做了什么noob错误?谢谢m8s!

最佳答案
-b选项是将wget发送到后台,所以你在wget完成之前就做了grep.

尝试不使用-b选项:

if wget --spider $i 2>&1 | grep --quiet "200 OK" ; then

猜你在找的Linux相关文章