summaryrefslogtreecommitdiffstats
path: root/utilities/gnuplotepsfixdc
blob: 41f1e542f7ad18686f39299f6acf2ba3389175c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

awk '	{
	if ($0 == "%%BoundingBox: 50 50 302 410") {
		print "%%BoundingBox: 50 50 302 300"
	} else if ($1 == "%%Title:") {
		print "%%Title: Is Parallel Programming Hard, And, If So, What Can You Do About It?"
	} else if ($1 == "/Title") {
		print "  /Title (Is Parallel Programming Hard, And, If So, What Can You Do About It?)"
	} else {
		print $0
	}
	}' | sed -e 's/^(19/(/' -e 's/^(20/(/'