diff --git a/05-grade.sh b/05-grade.sh index c148449..c72abe4 100644 --- a/05-grade.sh +++ b/05-grade.sh @@ -19,3 +19,18 @@ fi # that prints "it's cold" if the temperature is < 40 # it's chilly if < 60, it's okay if < 70 and, it's hot for # everything else +echo "Hello there im from a different universe" +echo "what is the temperature outside" +echo "give a numeric answer" +read temp +if [ "$temp" -lt 40 ]; then + echo "It's cold" +elif [ "$temp" -lt 60 ]; then + echo "It's chilly" +elif [ "$temp" -lt 70 ]; then + echo "It's great" + +else + echo "It's Scorching hot" +fi + diff --git a/AfterMerge.png b/AfterMerge.png new file mode 100644 index 0000000..1c7cf5b Binary files /dev/null and b/AfterMerge.png differ diff --git a/ScreenshotGitBash.png b/ScreenshotGitBash.png new file mode 100644 index 0000000..8cb77e2 Binary files /dev/null and b/ScreenshotGitBash.png differ