blob: 67f87b65513b1f6069dd7365fbc15712439f2def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/rc
if(! ~ $#* 1){
echo usage: cleanps infile >[1=2]
exit usage
}
{
echo %!PS-Adobe-2.0
cat /sys/doc/preamble
grep -v '^%%DocumentFonts' $1
} > cleanps.tmp
mv cleanps.tmp $1
|