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.
16 lines
380 B
16 lines
380 B
#!/usr/bin/env bash |
|
|
|
# Unofficial Bash Strict Mode |
|
set -euo pipefail |
|
IFS=' |
|
' |
|
script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd) |
|
|
|
challenge() { |
|
submitted=$(ls -l "$1" && bash "$script_dirS"/student/easy-perm.sh) |
|
expected=$(ls -l "$1" && bash "$script_dirS"/solutions/easy-perm.sh) |
|
|
|
diff <(echo "$submitted") <(echo "$expected") |
|
} |
|
|
|
challenge easy-perm/
|
|
|