Created
February 10, 2016 06:52
-
-
Save webdevwilson/e278c2ca279abfbd06f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| javac -d bin $(find ./src/* | grep .java) | |
| dir=$(pwd) | |
| cd bin | |
| java edu/gatech/cs6310/projectOne/ProjectOne -i ../resources/medium/student_demand_600.csv | |
| if [ $? -eq 1 ]; then | |
| echo "Relative directory failed." | |
| exit 1 | |
| fi | |
| java edu/gatech/cs6310/projectOne/ProjectOne -i $dir/resources/medium/student_demand_600.csv | |
| if [ $? -eq 1 ]; then | |
| echo "Absolute directory failed." | |
| exit 2 | |
| fi | |
| echo "Both successful!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment