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 | |
# An ugly hack to speed up pdflatex using the minted package | |
# place this file with the name 'pygmentize' somewhere on your | |
# path before the 'real' pygmentize, such that this file gets | |
# executed and can act as a wrapper around the 'real' pygmentize. | |
# This script computes a hash-value (md5sum) of the input file | |
# from minted and caches the output of pygmentize. | |
# The working directory is used to store the cached files (it's an ugly hack...) | |
# The real pygmentize command, may need customization to work on your system. |