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.
 
 
 
 
 
 

13 lines
213 B

#!/usr/bin/env bash
# Unofficial Bash Strict Mode
set -euo pipefail
IFS='
'
cd cl-camp8
submitted=$(bash ../student/skip.sh)
expected=$(bash ../solutions/skip.sh)
diff <(echo "$submitted") <(echo "$expected")