14 lines
228 B
Bash
Executable File
14 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# See the LICENSE file for license details.
|
|
#
|
|
|
|
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"
|
|
|