From a1075a215565d88d9cfa659930bf3e6e58502703 Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 30 Mar 2023 14:26:48 -0400 Subject: [PATCH 1/3] Changes made by Joseph Grados --- 01-read_input.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/01-read_input.sh b/01-read_input.sh index 438445b4..74c5176d 100644 --- a/01-read_input.sh +++ b/01-read_input.sh @@ -10,3 +10,6 @@ echo 'Your name was stored in $name' # exercise: write a script that asks the user for a # filename and create an empty file named after it +echo "Type in the file name in the command" +read filename +echo "$filename is now created!" From 2dd39350546e06eb154ddadff7d0bc5322e2100f Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 30 Mar 2023 15:13:51 -0400 Subject: [PATCH 2/3] Made by Joseph Grados --- 01-read_input.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/01-read_input.sh b/01-read_input.sh index 74c5176d..25f69c90 100644 --- a/01-read_input.sh +++ b/01-read_input.sh @@ -13,3 +13,7 @@ echo 'Your name was stored in $name' echo "Type in the file name in the command" read filename echo "$filename is now created!" +#Reading the user's favorite movie +echo "What's your favorite movie?" +read favMovie +echo "$favMovie is a good one!" From bc0ddb2cd061374f87267f94b8c9773fd5cc3c00 Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 30 Mar 2023 17:53:19 -0400 Subject: [PATCH 3/3] From the wonderful Joseph Grados --- 01-read_input.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/01-read_input.sh b/01-read_input.sh index 25f69c90..d5464c3a 100644 --- a/01-read_input.sh +++ b/01-read_input.sh @@ -17,3 +17,7 @@ echo "$filename is now created!" echo "What's your favorite movie?" read favMovie echo "$favMovie is a good one!" +#Reading the user's favorite movie +echo "What's your favorite album? +read favAlbum +echo "$favAlbum is fantastic!"