/linux-scripts

A list of useful linux scripts with interactive selection script

Primary LanguageShellMIT LicenseMIT

Linux Scripts

A list of useful linux scripts with interactive selection script

Usage/Examples

Using a short URL

bash <(curl -sSL scripts.base2code.de) [search]

Using the GitHub URL

bash <(curl -sSL https://raw.githubusercontent.com/base2code/linux-scripts/main/main.sh) [search]

[search] is optional. If specified the given term will be comparend to the script list using regex.

Dependencies

The script uses curl and jq.

Debian / Ubuntu (apt)

sudo apt-get install curl jq -y

Yum

sudo yum install epel-release -y
sudo yum install curl jq -y

Contributing

Contributions are always welcome!

To contribue please open a PR and add a script in scripts/.

File Structure:

#!/bin/sh (interpreter)
#This is a demo script (description - one line)

(your script)

Authors