MahiroOS-jhalfs/common/progress_bar.sh

16 lines
159 B
Bash
Raw Normal View History

2006-05-31 22:43:41 +02:00
#!/bin/bash
# $Id$
set -e
[[ -z $1 ]] && exit
[[ -z $2 ]] && exit
2006-05-31 22:43:41 +02:00
if [ ! -f $1 ] ; then
while [ -d /proc/$2 ] ; do
2006-06-01 23:09:55 +02:00
echo -n "."
sleep 1
done
2006-05-31 22:43:41 +02:00
fi