lackadaisical/filewait
2026-03-08 20:54:07 +01:00

12 lines
212 B
Bash
Executable file

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