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.
25 lines
550 B
25 lines
550 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
IFS='
|
||
|
'
|
||
|
|
||
|
FILENAME="student/largest.sh"
|
||
|
script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd)
|
||
|
|
||
|
challenge () {
|
||
|
submitted=$(cd "$1" && bash "$script_dirS"/"$FILENAME")
|
||
|
expected=$(cd "$1" && bash "$script_dirS"/solutions/largest.sh)
|
||
|
|
||
|
diff <(echo "$submitted") <(echo "$expected")
|
||
|
}
|
||
|
|
||
|
if [ $(cat "$script_dirS"/"$FILENAME" | grep echo) ]; then
|
||
|
echo "echo is not allowed in this exercise!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
challenge largest-dir/folder1
|
||
|
challenge largest-dir/folder2
|
||
|
challenge largest-dir
|