Task 1: Create a Script to Create Directories with Dynamic Names
Here's the script createDirectories.sh that creates directories based on the given arguments (name prefix, start, and end numbers):
#!/bin/bash
# Check if the correct number of argumen...