Last active
February 3, 2016 18:56
-
-
Save drewr/e4a8d25d6adcbe92cf42 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
i=64 | |
while java -Xmx${i}m -Xms${i}m -version >/dev/null 2>&1; do | |
i=$(( $i + 1 )) | |
done | |
echo last jvm died at ${i}m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment