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.
21 lines
420 B
21 lines
420 B
#!/usr/bin/env bash |
|
|
|
# Unofficial Bash Strict Mode |
|
set -euo pipefail |
|
IFS=' |
|
' |
|
|
|
FILENAME="student/set-env-vars.sh" |
|
|
|
# echo not allowed |
|
if [ -s ${FILENAME} ]; then |
|
if [[ $(cat $FILENAME | grep echo | wc -l) -ne 0 ]]; then |
|
echo "echo is not allowed in this exercise!" |
|
exit 1 |
|
fi |
|
fi |
|
|
|
submitted=$(bash $FILENAME) |
|
expected=$(bash solutions/set-env-vars.sh) |
|
|
|
diff <(echo "$submitted") <(echo "$expected")
|
|
|