First versions of the binaries and source file.
This commit is contained in:
parent
d2630d6e4f
commit
1dfda10ddc
11 changed files with 742 additions and 0 deletions
8
filewait
Executable file
8
filewait
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
# A simple utility that waits for a file to become available, infinitely
|
||||
FILE=$@
|
||||
while [ ! -f "$FILE" ]
|
||||
do
|
||||
sleep 0.1
|
||||
done
|
||||
echo $FILE
|
||||
Loading…
Add table
Add a link
Reference in a new issue