Day 8 Task: Shell Scripting Challenge
#!/bin/bash
# This is the shebang, which tells the system how to execute the script.
<< 'COMMENT'
This is a multi-line comment.
To create a multi-line comment in bash, use `<<` followed by a keyword and end it with the same keyword.
COMMENT
# Task...