Chiamaka Daniel-Paulforshebourneagainshebourneagain.hashnode.dev·Nov 20, 2024Hands-on Bash: Task One — Writing Your First “Hello, World!” ScriptIn the past few months, I have been learning about bash scripting, and with every new knowledge, practice is important, so the knowledge sticks. Today, I'll be starting the Hands-on Bash note series where I will be working on tasks on Bash programmin...DiscussHands-on BashDevops
Rudresh SinghforBash Tutorialbash-rudresh.hashnode.dev·Nov 13, 2024Bash_mid_AdvWe have already covered the variables — but just for refreshers… 1. Variables Basics: #!/bin/bash # Variable assignment name="Alice" echo "Hello, $name!" # Read input from the user echo "Enter your name:" read user_name echo "Hello, $user_name!" 2...DiscussBash
Laura Diazlaurainthecloud.hashnode.dev·Nov 4, 2024Bash Scripting 👩🏽💻Table of Contents Why did I started learning Bash Scripting? My learning process Challenges faced Interesting discoveries Examples from my experience My humble advice and next steps Why did I started learning Bash Scripting? I started learnin...Discuss·35 readslearnign DevOps
Munilakshmi G J100daysdevops.hashnode.dev·Nov 3, 2024Day 9 of 100 Days: Simple System Resource Monitor & Todo List Manager ( Bash Scripting Projects)Hey there, fellow learners! Welcome to Day 9 of our 100 Days of DevOps journey. Today, I’m excited to share two beginner-friendly Bash scripting projects that will enhance your command line skills and help you automate some everyday tasks. Let’s dive...DiscussBash
Binod Prasad Joshibinodpj.hashnode.dev·Oct 27, 2024Shell Script BasicsIntroduction Shell scripting means writing sequence of commands that shell interprets or executes. Shell scripting serves as a backbone for automating repetitive tasks, deploying code, managing infrastructure, and handling complex DevOps workflows. C...Discuss·34 readsshell
sneh srivastavasnehcreate.hashnode.dev·Oct 21, 2024Mastering Integer & String Comparisons in Bash ScriptingBash scripting is an essential tool for automating tasks on Linux systems. One key element is understanding how to work with integer and string comparison operators to control your script's logic. Here's a quick breakdown! 🚀 Integer Comparison Opera...Discussbash scripting
Saksham Kambleskm-saksham.hashnode.dev·Oct 17, 2024Mastering Error Handling in Shell Scripting: Essential Techniques for Robust Automation 🚀📅 Day 11 Task: Error Handling in Shell Scripting 🚨 In today's DevOps journey, we focus on error handling in shell scripting—a crucial skill to make sure our scripts are robust, reliable, and ready for the real world! 🌎 Whether you're automating ba...DiscussDevops
Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 16, 2024Day 11 Task: Error Handling in Shell ScriptingError handling is a crucial aspect of writing robust shell scripts. Below are the details for each task you will be covering today, including examples and explanations. Topics to Cover Understanding Exit Status: Each command returns an exit status,...Discuss·46 readsDay 11 Task: Error Handling in Shell Scripting
Chintamani Tarechintamani1804.hashnode.dev·Oct 14, 2024🚀 Day 8: Shell Scripting Challenge – Mastering the Basics of Bash!Hey Techies! 👋 Today, we dive deep into the world of Bash scripting! If you’ve been following along with the #90DaysOfDevOps journey, you know how critical shell scripting is in automating tasks and making your system administration life easier. 💻 ...DiscussDevops
Imran Shaikhlearnwithimran.hashnode.dev·Oct 11, 2024Advanced Linux Shell Scripting for DevOps Engineers with User ManagementCreate Directories Using Shell Script: Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start number of directories, and end number of directories), creates a specified number of directories with a d...DiscussLinux