2004-01-08 Fedora Tips #8:
To print pages with margin for hole punching.
#!/bin/sh # /usr/local/bin/print # a simple formatted printout, to enable someone to # 3-hole punch the output and put it in a binder cat $1 | pr -t -o 5 -w 85 | lpr(Source: http://www.tldp.org/HOWTO/Tips-HOWTO-2.html#ss2.1) - submitted by Krishnan Subramanian.