dipanwita sahooshellscript.hashnode.dev·Oct 17, 2024Shell-scriptingCreate Directories Using Shell Script: 2.Create a Script to Backup All Your Work: This script will copy files from a specified source directory to a backup directory, creating a timestamped backup folder for each backup run. Read About Cron and...#Day5Of 90DayOfDevops #Advanced Shell Scripting
prince meeniaprince222.hashnode.dev·Feb 16, 2024Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User managementIf you noticed that there are a total 90 sub-directories in the directory '2023' of this repository. What did you think, how did I create 90 directories? Manually one by one or using a script, or a command? All 90 directories within seconds using a s...1 like#Day5Of 90DayOfDevops #Advanced Shell Scripting
Sourabh Palandesourabhpalandedevops.hashnode.dev·Jan 30, 2024Beyond Basics: Mastering Advanced Linux Shell Scripting for DevOps with User ControlTask 1: Creating Dynamic Directories Here's a bash script for the first task, creating directories with a dynamic name: #!/bin/bash if [ "$#" -ne 3 ]; then echo "Usage: $0 <directory_name> <start_number> <end_number>" exit 1 fi director...1 like#90daysofdevops
Sandhya Deotaresandydevops4.hashnode.dev·Jan 30, 2024Mastering the Script: Unleashing Advanced Shell Scripting Techniques for Linux Power UsersIntroduction Welcome to Day 5 of the #90DaysOfDevOps challenge! Today, we will cover several topics related to Linux system administration and shell scripting. We'll start with creating dynamic directories using the command line, followed by an autom...1 like#90daysofdevops
Riya Vyasriyavyas.hashnode.dev·Aug 26, 2023Day 5 - Shell Scripting using loopsTask 1 - Write a bash script createDirectories.sh that when the script is executed with three given arguments (one is directory name and second is start number of directories and third is the end number of directories ) it creates specified number of...#Day5Of 90DayOfDevops #Advanced Shell Scripting
Rishi Guptarishigupta0.hashnode.dev·Aug 18, 2023Day 5 : 90 Days of DevOps Advanced Linux Shell Scripting with User managementWrite a bash script createDirectories.sh that when the script is executed with three given arguments (one is directory name and second is start number of directories and third is the end number of directories ) it creates specified number of director...#Day5Of 90DayOfDevops #Advanced Shell Scripting
Ahmed Nisarahmednisarhere.hashnode.dev·Aug 2, 2023Advanced Linux Shell Scripting for DevOps Engineers with User managementTasks You have to do the same using Shell Script i.e using either Loops or command with start day and end day variables using arguments - So Write a bash script create directories.sh that when the script is executed with three given arguments (one ...#Day5Of 90DayOfDevops #Advanced Shell Scripting
Moiz Asifmoiz-journeytodevops.hashnode.dev·Aug 1, 2023Day 5: Advanced Linux Shell Scripting for DevOps Engineers with User managementIn this blog, we will go deep dive into Bash Scripting Creating Dynamic Directories with Bash Scripting using Loops and Arguments We will be creating a bash script createDirectories.sh that when the script is executed with three given arguments (one ...42 reads#Day5Of 90DayOfDevops #Advanced Shell Scripting
Sheetal Shelakesheetal30.hashnode.dev·Apr 27, 2023Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User managementYou have to do the same using Shell Script i.e using either Loops or command with start day and end day variables using arguments - So Write a bash script createDirectories.sh that when the script is executed with three given arguments (one is direc...1 like·50 reads#Day5Of 90DayOfDevops #Advanced Shell Scripting