The script uses a loop to dynamically create directories with the given name prefix followed by numbers in the specified range.
Script: createDirectories.sh
#!/bin/bash
# Check if the correct number of arguments are provided
if [ $# -ne 3 ]; then
...