No description
Find a file
2026-01-13 20:26:03 +00:00
README.md README.md erstellt 2026-01-13 20:26:03 +00:00

Shell Scripts Collection

A Linux-focused collection of shell scripts for automation, system administration, and general command-line utilities.

Platform & Shells

  • Target platform: Linux
  • Scripts use one of the following shells:
    • POSIX sh (#!/bin/sh) for simple, portable scripts
    • bash (#!/bin/bash) when Bash-specific features are required

The required shell is specified in each script's shebang.

Script Design Philosophy

  • Standalone by default
    Every script is designed to work on its own and can be executed independently.

  • Grouped scripts
    When multiple scripts are located in the same directory and intended to work together:

    • One script acts as the main entry point
    • Supporting scripts are clearly named and documented
    • The directory-level README.md (if present) explains the workflow

Unless explicitly stated, assume scripts do not depend on others.

Usage

Make a script executable:

chmod +x script_name.sh

Run the script:

./script_name.sh