point2pdf - pointtools - Simple point utilities to hold text presentations. HTML git clone git://bitreich.org/pointtools/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/pointtools/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- point2pdf (228B) --- 1 #!/bin/sh 2 # 3 # See the LICENSE file for license details. 4 # 5 6 name="slides" 7 [ $# -gt 0 ] && name="$1" 8 9 enscript *.txt -Brf "Courier16" \ 10 -I "cat %s | iconv -c -f utf-8 -t iso-8859-1//translit" \ 11 -p - \ 12 | ps2pdf - "${name}.pdf" 13