I have several ps/eps figures. They are generated in a time loop, each with the same size. How can I combine them into a single ps/eps file? So I can view all of them in gsview by clicking "next page". I prefer a single file like a.eps, rather than a1.eps, a2.eps......
Try something like this:
gs -dBATCH -dNOPAUSE -q -sDEVICE=epswrite -sOutputFile=out.eps *.eps
It should take all the eps files and create a new one called out.eps with all of them in it.