在执行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脚本时等待消息的主要内容,如果未能解决你的问题,请参考以下文章
运行linux脚本,遇到要按回车键,怎么让它自动应答,继续运行脚本?