“Please read and understand any scripts before running them on your machine. Or click on the Git Pod link above to run them
Copie Past the scripts you want to use into a directory of your choice.
Then add the folder to your $PATH
# make any script executalbe
cd /path/to/my_script_folder
chomd +x copied_bash_script
# add this line at the end of your bash-profile
export PATH=$PATH:/path/to/my_script_folder
All bash scripts inside the folder scripts/
do not need to be edited. Other folders may require you to edit them to enter your API key. Most of the scripts will require you to have at leastcurl
installed, but some may also require jq
. If a script needs it, it will check if that CLI tool exists on your machine first.
sudo apt install curl jq