Hi, On Thu, 12 Apr 2001, Austad, Jay wrote: > Ok, so I have this very large binary file that has been split up into > sections. I want to put it back together, but I need to remove the EOF > character from the end of each section before I stitch it back together. > How do I go about this? It's binary, so I don't think I can use tr. Didn't see any other answers... Do it in perl? Read each file into a variable and chop off the last character if it's EOF? -Yaron --