Been testing some stuff and started lab 8

This commit is contained in:
2013-12-27 20:01:09 +01:00
parent ea53d81fef
commit e4e9a73ebb
7 changed files with 120 additions and 0 deletions

14
Misc/nesting_loops.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Jack-Benny Persson
# LX13
# Testing out nested loop from the book
for (( a = 1; a <= 3; a++ )); do
echo "Outer loop: $a"
for (( b = 1; b <= 3; b++ )); do
echo " Inner loop: $b"
done
done
exit 0