Skip to content

Instantly share code, notes, and snippets.

@philkuz
Created March 3, 2016 01:51
Show Gist options
  • Save philkuz/89fa7634f0f3a32d4f5c to your computer and use it in GitHub Desktop.
Save philkuz/89fa7634f0f3a32d4f5c to your computer and use it in GitHub Desktop.
if [ "$#" -ne 1 ]; then
echo "Usage: autograder <email>"
exit 1
fi
EMAIL=$1
echo $EMAIL | java editorTester.AGInitialCursorTest gradescope
echo $EMAIL | java editorTester.AGSimpleTextTest gradescope
echo $EMAIL | java editorTester.AGBackspaceTest gradescope
echo $EMAIL | java editorTester.AGArrowKeyTest gradescope
echo $EMAIL | java editorTester.AGNewlineTest gradescope
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment