MahiroOS-jhalfs/common/progress_bar.sh

16 lines
186 B
Bash
Raw Normal View History

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