Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 01-read_inputcopy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
# read the name of the user and print hello

echo "Welcome, Joshua"
9 changes: 8 additions & 1 deletion 07-beer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,12 @@ while [ $count -ge 0 ]; do

done

# exercise: implement another counting song (such as 12 days of Christmas)
# exercise: implement another counting song (such as 12 days of Christmas)
# using loops and if statements.
echo "Now let's do a countdown!"

count2=3
while [ $count2 -gt 0 ]; do
echo "$count2 days until deliverable is due"
((count2 = count2 - 1))
done
Binary file added part2Graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.