2014-01-21 09:25:03 +01:00
|
|
|
#!/bin/sh
|
2014-01-21 09:31:45 +01:00
|
|
|
#
|
|
|
|
# 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" -p - > "${name}.ps"
|
|
|
|
ps2pdf "${name}.ps"
|
|
|
|
|