My collection of utilities used on servers.
Scripts and binaries that can be used in PATH for making life easier.
All libaries("modules") that can be used for creating your system utility scripts like backups and etc.
The base library of each script. Containing several useful functions.
Loads a library from the lib folder.
load "use-env"
Will check if the executing user is a root user.
is_root
Generates a random string with 8 characters on default.
RANDOM_SIZE=8 # Default in script.sh. Add to script to override
MY_ID=$(rid)
Spits out the current timestamp based on the DATE_FORMAT
BACKUP_TIME=$(tz)
All the scripts are assumed to be living in the root directory of the repository. Therefore you could also fork this repo to add your own scripts. If you want scripts not to be public(added to repo), prefix them with private-
.