16_andand_oror.sh (371B)
1 #!/bin/sh 2 3 set -eu 4 RED="\033[31m" 5 GREEN="\033[32m" 6 RESET="\033[0m" 7 8 failed() { 9 printf "${RED}Failed${RESET}\n" 10 exit 1 11 } 12 13 [ "$(sh exercises/16_andand_oror.sh 1412)" = "correct pin" ] || failed 14 [ "$(sh exercises/16_andand_oror.sh 9999)" = "incorrect pin" ] || failed 15 [ $(grep "&&" exercises/16_andand_oror.sh | wc -l) -eq 6 ] || failed 16 17 printf "${GREEN}Passed${RESET}\n"