Created
March 3, 2016 01:51
-
-
Save philkuz/89fa7634f0f3a32d4f5c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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