Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 14, 2024Day 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...76 readsDevops
Faizan Shaikhfaizanshaikh.hashnode.dev·Oct 12, 2024Day 8 Task: Shell Scripting ChallengeComplete Script: day8_task.sh #!/bin/bash # Day 8 Task: Shell Scripting Challenge # This script demonstrates the use of comments, echo, variables, built-in variables, and wildcards in bash scripting. # Task 1: Comments # Comments help explain what e...54 readsbourn again shell
BehinDevbehindev.hashnode.dev·Sep 24, 2024How I Automated My Job And Did Nothing For A YearJanuary 2022 At the beginning of the year January 2022, I moved to another company as a Systems Analyst in mid-sized Marketing Firm. My job was quite simple, responsible for data transfer, data backup, maintaining records and checking for all backup ...10 likesautomation
Tanmaya Aroratanmaya1234.hashnode.dev·Aug 13, 2024Day 15: Error Handling in Shell Scripting - A Comprehensive GuideWhy is Error Handling Important in Scripts? 🤔 Error handling is crucial because it ensures that your scripts behave predictably, even when things go wrong. Without error handling, a script might fail silently, leaving you unaware of the issue until ...shell scripting
Tanmaya Aroratanmaya1234.hashnode.dev·Aug 8, 2024Day 13: Shell Scripting Challenge - Directory Backup with RotationWelcome to Day 13 of DevOps adventurous journey. Today we will do a challenge - which is to perform some task using Shell Scripting so that we are more confident in using Shell Scripting in industry with real life scenarios. Challenge Our today's cha...shell
Annanya Sahannanyasah.hashnode.dev·Jul 30, 2024The Evolution of Programming LanguagesIntroduction As software engineers, we navigate a landscape filled with diverse programming languages, each with its unique syntax, strengths, and quirks. From the low-level precision of Assembly to the high-level elegance of modern languages like Sw...37 reads#ProgrammingHistory
Saksham Gupta0xsaksham.hashnode.dev·Jul 24, 2024Python is a scripting language?I was introduced to Python very late in life, I considered it too easy to get over. As I continued my internship at Summer of Bitcoin, I had some tasks related to python knowledge, I gave in and started finding resources for the same. Luckily my favo...49 readsPython
Debanjan Chakrabortysubspace.hashnode.dev·Jul 7, 2024A Nuts and Bolts approach to differentiate between Perl tk and Ruby tkIntroduction When we talk about the "nuts and bolts" of something, we refer to the essential components and mechanisms that make it work. In the context of scripting languages and GUI toolkits, these "nuts and bolts" include the core syntax, paradigm...1 like·66 readsnuts and bolts
Abhinandan Khuranablog.s3curity.ninja·Jul 6, 2024Automating website monitor alerts with Go Lang!Hello, tech enthusiasts! Like many of you, I've been a regular participant of null-meetups in Bengaluru. However, I often found myself missing out on special workshops (Humla/Bachav) due to the limited seat availability. I realized that attendees wer...10 likes·34 readsemail alert
Saurabh Damalehackroot1.hashnode.dev·Jul 4, 2024Your First PHP Script: Hello World!Today, we'll guide you through creating and running your first PHP script. The "Hello World" program is a classic beginner's exercise in many programming languages, and PHP is no exception. Let's dive in! What is PHP? PHP (Hypertext Preprocessor) is ...PHP Basics