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