Fading Coder

One Final Commit for the Last Sprint

Checking for Empty Values in Shell Scripts

Introduction In shell scripting, several operaotrs are used to test the state of files and dircetories. The -f operator checks if a path is a regular file, -d checks for a directory, -e verifies existence, and -s determines if a file has a non-zero size. Checking if a Variable is Empty You can use a...

Shell Scripting Essentials: Variable Management and Conditional Evaluation

A shell script aggregates commands and control structures within a text file. While the .sh extension is conventional, the shebang directive at the file header determines the execution interpreter: #!/bin/bash echo "Initialization sequence started" Execution Contexts Scripts execute throug...

Understanding Double Colon Function Naming in Kubernetes Shell Scripts

Shell scripts in Kubernetes projects often use double colons (::) in function names for namespacing purposes. This convantion helps organize functions into logical groups, similar to packages in other langauges. # Example from Kubernetes logging script kube::log::status() { local V="${V:-0}&quo...

Practical Sed Strategies for Line Manipulation

Removing Lines Adjacent to Patterns To remove the line immediately preceding and following a specific pattern, combine address ranges with flow control commands. sed -i -e '/ERROR/{n;d}' -e '$!N;/\n.*ERROR/!P;D' system.log Deleting the Preceding Line When only the line before a match is required to...

Automated IP Blocking Pipeline with Dynamic Whitelist and Threshold Filtering

This solution implements a hybrid shell-Python architecture for automatically blocking malicious IP addresses based on connection frequency thresholds while respecting CIDR-based whitelists and preventing duplicate firewall rules. Architecture Oevrview The pipeline separates system-level operations...

Comprehensive Guide to Regular Expressions: Syntax, Lookarounds, Backreferences, and Practical Applications

Comprehensive Guide to Regular Expressions: Syntax, Lookarounds, Backreferences, and Practical Applications
1. Special Symbol Meanings 1.1 Quantifiers *: Matches the preceding pattern zero or more times. +: Matches the preceding pattern one or more times. ?: Matches the preceding pattern zero or one time. {n}: Matches the preceding patern exactly n times. {n,}: Matches the preceding pattern at least n tim...

Automating SSH Connections and Text Replacement with Shell Scripts

Fetching JSON Data with curl # Print JSON data directly to the terminal curl -H 'Authorization: Bearer api_key="a1b2c3d4e5f67890"' https://api.example.com/data.json # Store the curl output in a shell variable json_data=$(curl -H 'Authorization: Bearer api_key="a1b2c3d4e5f67890"'...