我编写了下面的脚本,并使用@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
可能导致这种情况发生的原因是什么?
由于