This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
NC='\033[0m' # No Color | |
installer=`which brew || which yum || which apt-get` | |
which jq >/dev/null || $installer install jq | |
if [ $? -ne 0 ]; then | |
echo -e ${RED} unable to install jq, please run $installer install jq $NC |