Börjat på labb 5

This commit is contained in:
2013-12-14 22:07:28 +01:00
parent f561ee1e9d
commit de2606200a
6 changed files with 94 additions and 0 deletions

15
Labb5/ovning3.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/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