lackadaisical/filewait

12 lines
205 B
Bash
Executable file

#!/bin/sh
# A simple utility that waits for a file to become available, infinitely
DAISY_INTERNAL=1
. $(dirname $(realpath $0))/daisy.source
file=$@
while [ ! -f "$file" ]
do
sleep 0.1
done
echo $file