@echo off

rem 	Command file to stick bounding box finder in front of a postscript file

rem 	if bb.ps is not in d:\emtex\ps, don't forget to set the path to bb.ps 


if "%1" == "" goto noarg
:loop
	copy d:\emtex\ps\bb.ps+%1 %1
	shift
	if "%1" == "" goto end
	goto loop

:noarg
	cat d:\emtex\ps\bb.ps -

:end
