diff --git a/backup_new.sh b/backup_new.sh index 093d964..003e7f0 100755 --- a/backup_new.sh +++ b/backup_new.sh @@ -22,12 +22,15 @@ mag="\e[95m" badParam () { if [ "$1" = "empty" ]; then printf "${err}\nError: '%s' cannot have a NULL (empty) value.\n" "$2" - printf "${cyan}Please use '--help' for assistance${normal}\n\n" + printf "${cyan}Please use '--help' for assistance${norm}\n\n" exit 1 elif [ "$1" = "dne" ]; then - printf "${err}\nError: '%s %s'\n" \ + printf "${err}\nError: '%s %s'\n" "$2" "$3" + printf "file or directory does not exist.${norm}\n\n" + exit 1 + elif [ "$1" = "user" ]; then + printf "${err}\nError: '%s %s': User does not exist!${norm}\n\n" \ "$2" "$3" - printf "file or directory does not exist.\n\n" exit 1 fi }