Skip to content

Instantly share code, notes, and snippets.

View burturt's full-sized avatar

Alec burturt

View GitHub Profile
@burturt
burturt / Java in Terminal.sublime-build
Last active July 23, 2020 20:26
Sublime text 3 build command to use terminal to compile and run java since the built-in console does not have user input. MacOSX only.
{
"shell_cmd": "osascript -e 'tell app \"Terminal\" to do script \"cd $file_path && javac *.java && java $file_base_name\" in front window activate'"
}