我想在脚本中编写一个进度指示器函数,该函数会循环“请稍候”消息,直到调用它的任务完成为止。

我希望它是一个函数,以便可以在其他脚本中重用它。

为了实现这一点,该函数需要与其他函数松散耦合,即,调用它的函数不必知道其内部代码。

到目前为止,这就是我所拥有的。该函数接收调用方的pid并循环直到任务完成。

function progress() {
  pid="$1"

  kill -n 0 "${pid}" &> /dev/null && echo -ne "please wait"
  while kill -n 0 "${pid}" &> /dev/null ; do
    echo -n "."
    sleep 1
  done
}

在脚本中使用它时,它可以很好地工作,例如:
#imports the shell script with the progress() function
. /path/to/progress.sh

echo "testing"
# $$ returns the pid of the script.
progress $$ &
sleep 5
echo "done"

输出:
$ testing
$ please wait.....
$ done

问题是当我从另一个函数调用它时,因为函数没有pids:
function my_func() {
  progress $$ &
  echo "my func is done"
}

. /path/to/progress.sh
echo "testing"
my_func
sleep 10
echo done

输出:
$ testing
$ please wait.....
$ my func. is done.
$ ..........
$ done

最佳答案

您可能对dialog-面向bash curses的菜单系统感兴趣。

对于进度条,您可以检查http://bash.cyberciti.biz/guide/A_progress_bar_(gauge_box)

或者,另一个更简单的项目:
http://www.theiling.de/projects/bar.html

如果不感兴趣,可以尝试下一个:

dotpid=
rundots() { ( trap 'exit 0' SIGUSR1; while : ; do echo -n '.' >&2; sleep 0.2; done) &  dotpid=$!; }
stopdots() { kill -USR1 $dotpid; wait $dotpid; trap EXIT; }
startdots() { rundots; trap "stopdots" EXIT; return 0; }

longproc() {
    echo 'Start doing something long... (5 sec sleep)'
    sleep 5
    echo
    echo 'Finished the long job'
}

run() {
    startdots
    longproc
    stopdots
}

#main
echo start
run
echo doing someting other
sleep 2
echo end of prog

10-05 18:50