diff --git a/01-read_input.sh b/01-read_input.sh index 438445b..25ba295 100644 --- a/01-read_input.sh +++ b/01-read_input.sh @@ -10,3 +10,9 @@ 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 "Enter a filename:" +read filename + +touch $filename +echo "File $filename created" +echo "Final combined version" diff --git a/screenshot2.png b/screenshot2.png new file mode 100644 index 0000000..19567d4 Binary files /dev/null and b/screenshot2.png differ