Last active
December 21, 2015 07:28
-
-
Save joequery/6271117 to your computer and use it in GitHub Desktop.
Jarnal executables
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
| # File: jaj2pdf | |
| # Quickly convert jarnal files to pdf. Page dimensions don't seem to be | |
| # preserved unfortunately | |
| #!/bin/bash | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| java -Xms64m -Xmx512m -jar $DIR/jarnalDir/jarnal.jar -pdf - $1 | |
| # File: jarnal | |
| # Open up jarnal! | |
| #!/bin/bash | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| java -Xms64m -Xmx512m -jar $DIR/jarnalDir/jarnal.jar $1 & >/dev/null 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment