Skip to content

Instantly share code, notes, and snippets.

@mcrisc
Created April 23, 2015 16:45
Show Gist options
  • Select an option

  • Save mcrisc/70f8adcfd0d98ab5df80 to your computer and use it in GitHub Desktop.

Select an option

Save mcrisc/70f8adcfd0d98ab5df80 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -z "$1" ]; then
echo "usage: `basename $0` <source-file> [output-file]"
exit 1;
fi
output=$2
if [ -z "$2" ]; then
output="pygmentized.rtf"
fi
# Styles: pastie, manni, igor, xcode
style=manni
pygmentize -O "style=$style,fontface=Source Code Pro" -o $output $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment