This commit is contained in:
Pocco81 2021-08-03 23:17:40 -05:00
parent acceccda87
commit a49c54fc41
1 changed files with 10 additions and 2 deletions

View File

@ -6,6 +6,8 @@ ORANGE='\033[0;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
skip=0
# https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
prompt() {
case ${1} in
@ -37,7 +39,6 @@ _usage() {
"
}
skip=0
_skip_ahead() {
amount=$1
@ -142,5 +143,12 @@ main() {
_parse_args "assert_arg" "${argvs[@]}"
}
init() {
if [ $# -eq 0 ]; then
prompt -e "ERROR: This script needs at least one argument"
else
main "${@}"
fi
}
main "${@}"
init "${@}"