bin/code-to-pdf @ a8431e53b8bd

Lots of crap
author Steve Losh <steve@stevelosh.com>
date Fri, 29 Sep 2017 10:28:47 -0400
parents 85bedd1649b9
children 07fbabc1f02d
#!/usr/bin/env bash

TITLE="$1"
shift

enscript -1 --media=A4 \
    --toc \
    --header '%H - $N | | page $% of $= in file $v' \
    --font "Menlo-Regular@8.5" \
    --header-font "Menlo-Bold@10" \
    --margins=60:60:18:60 \
    --fancy-header=sjl \
    --title "$TITLE" \
    --baselineskip 3 \
    --line-numbers \
    --highlight \
    --color \
    --mark-wrapped-lines=arrow \
    -p - \
    --word-wrap $* \
    | pstopdf -i -o code.pdf