6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
|
function wait_for_file {
|
||
|
FILE=$1
|
||
|
|
||
|
while [ ! -f ${FILE} ]; do sleep 1; done
|
||
|
}
|