Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
function cinfo() {
COLOR='\033[01;33m' # bold yellow
RESET='\033[00;00m' # normal white
MESSAGE=${@:-"${RESET}Error: No message passed"}
echo -e "${COLOR}${MESSAGE}${RESET}"
}
##
cinfo "Local Provisioning detected"
#A couple of tools that are not on my base box
#!/bin/bash
function cinfo() {
COLOR='\033[01;33m' # bold yellow
RESET='\033[00;00m' # normal white
MESSAGE=${@:-"${RESET}Error: No message passed"}
echo -e "${COLOR}${MESSAGE}${RESET}"
}
##
cinfo "Local Provisioning detected"
#A couple of tools that are not on my base box