diff --git a/02-add_nums.sh b/02-add_nums.sh index e8554d9d..4d946a65 100644 --- a/02-add_nums.sh +++ b/02-add_nums.sh @@ -23,13 +23,11 @@ echo "The total number of pixels is $totalPixels" # exercise: ask the user for the width and height and present total # number of pixels -echo "" -echo "What is the width of your display?" +echo "Enter the width of your chakra display:" read width -echo "" -echo "What is the height of your display?" + +echo "Enter the height of your chakra display:" read height -echo "" -pixelTotal=$(( $width * $height )) -echo "Your display has ${pixelTotal} pixels." +pixelTotal=$((width * height)) +echo "Your display contains $pixelTotal pixels of pure chakra." diff --git a/LaureeshVolmar/after-merging.png b/LaureeshVolmar/after-merging.png new file mode 100644 index 00000000..a9f59dc7 Binary files /dev/null and b/LaureeshVolmar/after-merging.png differ diff --git a/LaureeshVolmar/laureesh.sh b/LaureeshVolmar/laureesh.sh new file mode 100644 index 00000000..3462ea4f --- /dev/null +++ b/LaureeshVolmar/laureesh.sh @@ -0,0 +1,2 @@ +#!/bin/bash +echo "Hello, my name is Laureesh Volmar" \ No newline at end of file diff --git a/LaureeshVolmar/two-branches.png b/LaureeshVolmar/two-branches.png new file mode 100644 index 00000000..50321b8e Binary files /dev/null and b/LaureeshVolmar/two-branches.png differ