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

13
Labb5/test_until.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Jack-Benny Persson
# LX13
# Until test
Time=0
until [ $Time -eq 59 ]; do
Time=`date +%S`
echo $Time
sleep 1
done