Chinay Boharachinayb.hashnode.dev·2 hours agoShell Scripting Loops: A Comprehensive Guide with Practical Examples1. Introduction to Shell Scripting Loops 🔁 What are Shell Scripting Loops? Shell scripting loops are essential programming constructs that allow you to execute a set of commands repeatedly. They enable automation and efficiency in shell scripting by...Discussshell scripting
Payal Saindanepayalsaindane27.hashnode.dev·6 hours agoLinux Shell Scripting Fundamentals for DevOps EngineersWelcome to my journey of exploring DevOps. Now that we have an understanding of what DevOps is, it's important to emphasize that automation is a fundamental principle of DevOps. Shell scripting plays a pivotal role in automation. You might be wonderi...Discussshell scripting
Himabindeswara Rao Tammireddyhimabindeswararao.hashnode.dev·8 hours agoAdvanced Linux Shell Scripting for DevOpsAdvanced Linux shell scripting skills are essential for DevOps engineers. Shell scripting can be used to automate a wide range of tasks, from deploying and managing applications to configuring systems and troubleshooting problems. Here are some advan...Discussshell scripting
Himabindeswara Rao Tammireddyhimabindeswararao.hashnode.dev·Oct 3, 2023Basic Linux Shell ScriptingShell scripting is a programming language that uses the Linux shell to automate tasks. Shell scripts are written in plain text files and can be executed by running the script file in the shell. Shell scripts are a powerful tool for DevOps teams becau...Discuss#90daysofdevops
Bhavesh Yadavcodezera.hashnode.dev·Oct 2, 2023Linux Shell Scripting Made Easy: Tips and Tricks for BeginnersLinux is a powerful and versatile operating system that has become increasingly popular in recent years. One of the key features that makes Linux so attractive to users is its command-line interface, which allows users to interact with the system usi...DiscussLinuxLinux
oluwatobi onadipeooluwatobi.hashnode.dev·Oct 2, 2023Why Is Bash scripting an important tool to learn as a Cloud DevOps engineer?Bash is widely regarded as a universal scripting language in the world of cloud computing. All cloud platforms support using Bash commands to pass data and information. Bash scripting is mainly used for Automating tasks in DevOps workflow. Let’s est...DiscussBash
Pushkal Vashisthapushkalv.hashnode.dev·Sep 30, 2023Linux Shell Scripting Advanced : Automation with the power of Shell Scripting.Creating n number of directories using a script Create a Script to back up all your work done till now Cron and Crontab, to automate the backup Script User Management Creating n number of directories using a script. Two ways of creating a direct...Discussshell scripting
Manish Negijourneytodevops.hashnode.dev·Sep 26, 2023Shell-scripting Interview Questions & AnswersShell/Bash Scripting for DevOps. To create a shell script file touch first-shell-sript.sh Shell script always have .sh extension. To list the files ls It will shows all the files in the present directory. To list the files with more info...Discuss·39 readsshell scripting
Rishabh Varshneyrisvarsh.hashnode.dev·Sep 24, 2023Project 1:Create a shell script for archiving older log filesQuestion:To create a shell script for archiving older log files, you can use tools like find to locate files that are older than a specified threshold and then move or compress those files to an archive directory. #!/bin/bash #Variables path=/home/ri...Discuss#shellscripting #devops
Srikanth Mergusrikanthmergu.hashnode.dev·Sep 17, 2023A Journey Through Linux CommandsPart 1: The Command-Line Essentials 1.1. Navigating the File System Basic Command: cd, ls, pwd Let's start with the basics. Use cd to change directories, ls to list files and directories, and pwd to print the current directory. cd /path/to/directory ...Discuss·29 readsLinux