Utilities I use on a daily basis, dockerized.
- Bash with built-in getopts
- Docker
- Any submodule dependencies
- Clone this repo somewhere your user has access. I prefer my home directory:
~
git clone [email protected]:noahjahn/utils.git ~/utils
- Add the directory to your users'
PATH
-
The file is different depending on your OS. Examples:
- .bash_profile
- .bashrc
- .profile
- .zshrc
- .zprofile
-
be sure to change the file path if you didn't clone this repo to your home directory
if [ -d "$HOME/utils" ] ; then
PATH="$HOME/utils:$PATH"
fi
-
Launch a new shell, or source the shell config file from the previous step, and you can now use the
utils
on your terminal! -
Pull submodules
utils update
Run utils update
utils update