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.

23 lines
516 B

#!/usr/bin/env bash
# Unofficial Bash Strict Mode
set -euo pipefail
IFS='
'
2 years ago
FILENAME="student/to-git-or-not-to-git.sh"
submitted=$(bash student/to-git-or-not-to-git.sh)
expected=$(bash solutions/to-git-or-not-to-git.sh)
# True if FILE exists and is a regular file
2 years ago
if [ -f ${FILENAME} ]; then
# FILE exists and it's not empty
2 years ago
if [ -s ${FILENAME} ]; then
diff <(echo "$submitted") <(echo "$expected")
else
echo "The file exist but is empty"
2 years ago
fi
else
echo "File does not exist"
fi