Avoided recursion in progress_bar.sh.

The make PID test need be fixed yet.
This commit is contained in:
Manuel Canales Esparcia 2006-06-01 21:08:49 +00:00
parent 1a1f099289
commit a36805ddb1

View file

@ -4,10 +4,12 @@
set -e
[[ -z $1 ]] && exit
[[ -z $2 ]] && exit
if [ ! -f $1 ] ; then
echo -n "."
while [ -d /proc/$2 ] ; do
echo -n "$2 "
sleep 1
if [ -d /proc/$2 ] ; then
./$0 $1 $2
fi
done
fi