Skip to content

Instantly share code, notes, and snippets.

@agazso
Created December 1, 2012 15:30
Show Gist options
  • Select an option

  • Save agazso/4182897 to your computer and use it in GitHub Desktop.

Select an option

Save agazso/4182897 to your computer and use it in GitHub Desktop.
Java Runner
#!/bin/sh
if [ "$1" = "" ]; then
echo "Usage: javar class [args...]"
exit 1
fi
javac $1.java && java $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment