Advanced Linux Shell Scripting for DevOps Engineers with User management (Day 5 task)
1.shell script to create directories using loop
Here is a Bash shell script that creates a specified number of directories with a dynamic name, based on user input:
#!/bin/bash
# Check if three arguments are provided
if [ $# -ne 3 ]; then
echo "Us...
devopsgyanwithmehboob.hashnode.dev5 min read