Cygwin Pretty Print

Here’s a quick script to convert a file to pretty print PDF in Cygwin

#!/bin/bash
a2ps -r -M letterdj -o - $1 | ps2pdf - $1.pdf

Leave a Reply