source: common/progress_bar.sh@ 460ea63

experimental
Last change on this file since 460ea63 was 460ea63, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r2734:2745 from trunk.

  • Property mode set to 100755
File size: 186 bytes
Line 
1#!/bin/bash
2
3# $Id$
4
5set -e
6
7[[ -z $1 ]] && exit
8
9if [ ! -f $1 ] ; then
10 while fuser -v . 2>&1 | grep make >/dev/null ; do
11 echo -n "."
12 sleep 1
13 [[ -f $1 ]] && exit
14 done
15fi
Note: See TracBrowser for help on using the repository browser.