blob: 24d4f60b4781fdf1ac9e6f30654badc0a407d745 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/rc
# dpost [-f] [file...] - convert troff output to postscript,
# optionally include font def'ns
# exec lp -dstdout $*
if (! ~ $#* 0 && ~ $1 -f) {
shift
aux/tr2post $* | addpsfonts
}
if not
exec aux/tr2post $*
|