Bug Buster Brunobugbusterbruno.hashnode.dev·10 hours agoCustomize your PowerShell promptThe default PowerShell prompt is pretty basic and not very informative. It only shows “PS”, followed by a “>” sign. Luckily, it's possible to customize it by editing the PowerShell profile file. Here’s what it looks like before and after: PowerShel...DiscussPowershell
Patil Rahul Prafullatherahulpatil.hashnode.dev·12 hours agoAWS Resource Listing with Shell ScriptingAs cloud environments grow more complex, it becomes increasingly important to efficiently manage resources. Automation can simplify resource tracking and management, especially in AWS where various services are actively used. One effective way to str...Discuss·1 likeshell script
Syed Dadapeerdrops.hashnode.dev·13 hours agoDay 10: Learn to Analyze Logs and Generate ReportsTask Write a Bash script that automates the process of analyzing log files and generating a daily summary report. The script should perform the following steps: Input: The script should take the path to the log file as a command-line argument. Erro...Discuss90DaysOfDevOps#90daysofdevops
Payal Sharmapayal-sharma.hashnode.dev·14 hours agoLog Analyzer and Report Generator with Shell Scripting: A Step-by-Step GuideIn this post, I'll walk you through how I automated the process of analyzing log files and generating a summary report using a Bash script. This script not only counts errors but also highlights critical events and identifies the most common error me...DiscussDevops
ALI MASIU ZAMAdevopstoolbatch8.hashnode.dev·17 hours agoLinux - Day 10Log Analyzer and Report Generator Using Bash Script In this task, we are creating a Bash script that automates the process of analyzing log files and generating a daily summary report. This script will analyze error messages, identify critical events...DiscussAWS
Aman Sharmashell-scripting.hashnode.dev·17 hours agoDay 2 - Linux Basics & Commands (continued) Intro to Shell-scriptingIntroduction to Shell Scripting Shell scripting is a powerful tool for automating repetitive tasks, managing system operations, and enhancing productivity in Linux environments. It combines the efficiency of command-line tools with the logic of progr...Discuss·1 likeLinux
Faizan Shaikhfaizanshaikh.hashnode.dev·17 hours agoDay 10 Task: Log Analyzer and Report GeneratorBash script that accomplishes the task of analyzing log files and generating a daily summary report. The script will: Accept the path to the log file as a command-line argument. Count the number of error messages containing "ERROR" or "Failed". Id...Discuss·46 readsDevops
Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 13, 2024Day 9 Task: Shell Scripting Challenge Directory Backup with RotationThe script will create timestamped backups and retain only the last 3 backups by deleting the older ones. Let’s call it backup_with_rotation.sh: vim backup_with_rotation.sh : #!/bin/bash # Check if directory path is provided if [ -z "$1" ]; then ...Discussrotationbackup
Arijit Dasarijitdas.hashnode.dev·Oct 13, 2024Shell Scripting Basics: A Tutorial for BeginnersIn this Shell-Scripting course, we will be using a Linux environment to execute our scripts. Linux is a powerful operating system widely used in various fields, from software development to system administration. For the purposes of this course, we w...DiscussThe DevOps Series#devops series
Syed Dadapeerdrops.hashnode.dev·Oct 13, 2024Day 9 Task: Shell Scripting Challenge Directory Backup with Rotation🌟 Today's Agenda: Creating a Backup Bash Script! 🌟 We'll be writing a bash script that ensures your files are safe and sound! What We'll Cover: 📂 Directory Path: Learn how to accept a directory path as a command-line argument. ⏳ Timestamped Back...Discuss90DaysOfDevOps#90daysofdevops