Bash warten, bis die Datei vorliegt
until [ -f /tmp/examplefile.txt ]
do
sleep 5
done
echo "File found"
exit
Gifted Gull
until [ -f /tmp/examplefile.txt ]
do
sleep 5
done
echo "File found"
exit