在执行Linux shell脚本时等待消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在执行Linux shell脚本时等待消息相关的知识,希望对你有一定的参考价值。

在我的shell脚本中,输出需要3-4分钟。我想展示一些等待消息,直到那个时候像wait for output....

答案
echo -n "Wait for output.."
script > outputfile &
pid=$!
while ps $pid > /dev/null 2>/dev/null ; do
    echo -n .
    sleep 10
done
echo .
echo "And here is that output you've been waiting for:"
cat outputfile

以上是关于在执行Linux shell脚本时等待消息的主要内容,如果未能解决你的问题,请参考以下文章

如何等待一个shell命令执行完成

运行linux脚本,遇到要按回车键,怎么让它自动应答,继续运行脚本?

如何在shell脚本中,判断一个基本命令执行是不是成功

求问 BAT脚本如何自动执行 adb shell 以后的命令

Linux bash基础特性二

php脚本等待shell脚本执行完成