Баш подождите, пока не существует файла
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