pointtools/bin/point2pdf

14 lines
228 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" \
-I "cat %s | iconv -c -f utf-8 -t iso-8859-1//translit" \
-p - \
| ps2pdf - "${name}.pdf"
2014-01-21 09:25:03 +01:00