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.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Unofficial Bash Strict Mode
|
|
|
|
set -euo pipefail
|
|
|
|
IFS='
|
|
|
|
'
|
|
|
|
|
|
|
|
FILENAME="student/in-back-ground.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/in-back-ground.sh)
|
|
|
|
diff <(echo "$submitted") <(echo "$expected")
|
|
|
|
if [ -s ${sol-output.log && output.log} ]; then
|
|
|
|
diff sol-output.log output.log
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# True if FILE exists and is a regular file
|
|
|
|
if [ -f ${FILENAME} ]; then
|
|
|
|
# FILE exists and it's not empty
|
|
|
|
if [ -s ${FILENAME} ]; then
|
|
|
|
challenge .
|
|
|
|
|
|
|
|
# This will faill the grep command
|
|
|
|
sed -i 's/moon/sun/g' facts
|
|
|
|
challenge .
|
|
|
|
sed -i 's/sun/moon/g' facts
|
|
|
|
else
|
|
|
|
echo "The file exist but is empty"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "File does not exist"
|
|
|
|
exit 1
|
|
|
|
fi
|