pointtools/bin/point2pdf

11 lines
163 B
Bash
Executable File

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