pointtools/bin/point2pdf

11 lines
163 B
Plaintext
Raw Normal View History

2014-01-21 09:25:03 +01:00
#!/bin/sh
#
# See the LICENSE file for license details.
#
2014-01-21 09:25:03 +01:00
name="slides"
[ $# -gt 0 ] && name="$1"
enscript *.txt -Brf "Courier16" -p - | ps2pdf - "${name}.pdf"
2014-01-21 09:25:03 +01:00