This file contains 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
#!/usr/bin/env bash | |
function command_exists () { | |
type "$1" &> /dev/null ; | |
} | |
function print_error() { | |
printf "\e[31m Error \e[0m: %s \n" "$1" | |
} |
This file contains 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
#!/usr/bin/env bash | |
function command_exists () { | |
type "$1" &> /dev/null ; | |
} | |
function print_error() { | |
printf "\e[31m Error \e[0m: %s \n" "$1" | |
} |
This file contains 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
#!/usr/bin/env bash | |
function command_exists () { | |
type "$1" &> /dev/null ; | |
} | |
function print_error() { | |
printf "\e[31m Error \e[0m: %s \n" "$1" | |
} |