1 1.1 garbled #!/bin/sh 2 1.1 garbled # Filter to encapsulate text files in HP PJL format, suitable for use as an 3 1.1 garbled # if filter for any printer supporting the HP PJL format, such as the 4 1.1 garbled # HP LaserJet IIIsi 5 1.1 garbled doescape () { 6 1.1 garbled printf "\33%%-12345X" 7 1.1 garbled } 8 1.1 garbled doescape 9 1.1 garbled echo @PJL 10 1.1 garbled echo @PJL JOB 11 1.1 garbled cat 12 1.1 garbled doescape 13 1.1 garbled doescape 14 1.1 garbled echo @PJL 15 1.1 garbled echo @PJL EOJ 16 1.1 garbled doescape 17