脚本在启动时无法正常工作

时间:2014-09-04 17:53:19

标签: linux bash crontab startup ping

我编写了下面的脚本,并使用@reboot命令将其添加到crontab(使用crontad -e)。我认为该命令在Firefox打开时运行,但它不会等待ping正确返回。

#!/bin/bash

success=0

while [ $success -ne 1 ]; do
    ping -c 4 hercules
        if [ $? -eq 0 ]; then
            success=1
            /usr/bin/firefox
        fi
done

可能导致这种情况发生的原因是什么?

由于

0 个答案:

没有答案