7cf961edb5
Thanks to Gerrit Meyerheim <gerrit.meyerheim@pernixmail.de>
11 lines
163 B
Bash
Executable File
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"
|
|
|