A collection of shell scripts I use on daily basis on my Linux box.
Download the source code from this repository or use a git clone and execute install.sh:
git clone https://github.com/rolodoom/shell-scripts.git
chmod +x shell-scripts/install.sh && ./shell-scripts/install.sh
Don't forget to add $HOME/.local/bin
to your PATH on ~/.bashrc
or ~/.zshrc
export PATH="$HOME/.local/bin:$PATH"
NOTE: install.sh will delete the donwloaded shell-scripts folder.
I usually store this scripts in $HOME/.local/bin
and use 'r_' as preffix so I don't get confuse with system commands:
r_command
Some script have help information as an standar linux command or display one if no options are passed to the command.
r_command -h
I will be adding missing help as soon as I have time.
Have a bug or an issue with this template? Open a new issue here on GitHub.
This code is released under the GPL-3.0 license, which means you have the four freedoms to run, study, share, and modify the software. Any derivative work must be distributed under the same or equivalent license terms.