Day 5 - Advanced Linux Shell Scripting for DevOps Engineers with User management
1. Write a shell script to create multiple directories in the working directory.
The command should be executed in this way:
./directories.sh <dir_name> <start_num> <end_num>
#!/usr/bin/env bash
# a script to create directories from user args.
# An...
akshaykhoje.hashnode.dev5 min read