mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
650 B
24 lines
650 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Unofficial Bash Strict Mode
|
||
|
set -euo pipefail
|
||
|
IFS='
|
||
|
'
|
||
|
|
||
|
script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd)
|
||
|
|
||
|
|
||
|
challenge() {
|
||
|
submitted=$(cd "$1" && "$script_dirS"/student/teacher.sh)
|
||
|
expected=$(cd "$1" && "$script_dirS"/solutions/teacher.sh)
|
||
|
|
||
|
if ! diff -q <(echo "$submitted") <(echo "$expected") &>/dev/null; then
|
||
|
echo "??? What ?? Wrong answer, teacher. Did you really do the job previously? Or was is just an \"echo\" of luck??"
|
||
|
exit 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
MAIN_SUSPECT="Harvey Dent" challenge teacher/mystery1
|
||
|
MAIN_SUSPECT="The Joker" challenge teacher/mystery2
|
||
|
MAIN_SUSPECT="The Pinguin" challenge teacher/mystery3
|