No description
- Shell 100%
| backup-scripts | ||
| check-mkv.sh | ||
| sanitize_filenames.sh | ||
| show-arm-progress.sh | ||
| start-screen-scripts | ||
| sync-scripts | ||
| tools | ||
| transcode-via-amd-gpu.sh | ||
| podman-guide.sh | ||
| README.md | ||
linux script collection - aus dem hause wiotte
A collection of shell scripts for Linux. Mostly small, single-purpose tools I use day to day.
Layout
- Standalone scripts live in the repo root — one
.shfile, self-contained. - More involved scripts get their own folder named after the script, with a dedicated
README.mdexplaining usage, dependencies, and options.
.
├── some-script.sh
├── another-script.sh
└── bigger-tool/
├── bigger-tool.sh
└── README.md
If a script has its own folder, check the README inside it for details.
Usage
chmod +x some-script.sh
./some-script.sh
Read the top of each script (or its folder README) before running — some expect specific arguments or environment.
Platform
Written for and tested on Linux. A few scripts happen to also work on macOS, but that's coincidence rather than intent — no guarantees, and macOS-specific behaviour isn't maintained. If a script is OS-specific, most of the time its noted inside comments of the script or inside the script-README.