Files
scripts_grundkurs/Labb5/ovning3.sh
2013-12-14 22:07:28 +01:00

16 lines
157 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# Övning 3, labb 5
File="while.dat"
while [ ! -f $File ]; do
sleep 1
done
echo "Filen $File hittades!"
exit 0