diff --git a/08-count.sh b/08-count.sh index c09d7ca..80e4727 100644 --- a/08-count.sh +++ b/08-count.sh @@ -15,3 +15,19 @@ done # exercise: Loop over some type of files and use the # "grep" UNIX command to find snippets of strings in them. +echo "Counting finished!" + +# Backward counting +for i in {10..1} +do + echo "Backward: $i" +done + +# New feature: count even +for i in {1..10} +do + if (( i % 2 == 0 )) + then + echo "Even: $i" + fi +done \ No newline at end of file diff --git a/after_merge.png b/after_merge.png new file mode 100644 index 0000000..7b78fe9 Binary files /dev/null and b/after_merge.png differ diff --git a/branches.png b/branches.png new file mode 100644 index 0000000..5e8f2d0 Binary files /dev/null and b/branches.png differ