source:
common/progress_bar.sh@
c665386
Last change on this file since c665386 was 46758a2, checked in by , 18 years ago | |
---|---|
|
|
File size: 186 bytes |
Rev | Line | |
---|---|---|
[a858a78] | 1 | #!/bin/bash |
2 | ||
3 | # $Id$ | |
4 | ||
5 | set -e | |
6 | ||
[a36805d] | 7 | [[ -z $1 ]] && exit |
8 | ||
[a858a78] | 9 | if [ ! -f $1 ] ; then |
[46758a2] | 10 | while fuser -v . 2>&1 | grep make >/dev/null ; do |
[5faab22] | 11 | echo -n "." |
[a36805d] | 12 | sleep 1 |
[46758a2] | 13 | [[ -f $1 ]] && exit |
[a36805d] | 14 | done |
[a858a78] | 15 | fi |
Note:
See TracBrowser
for help on using the repository browser.