From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: File splitter or disassemble Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: <8859ts0e6m4th1c9lfq5i15vfbtjhg8c6g@4ax.com> References: <001001c0299f$59efcac0$3113ddcc AT lhaglund> <200009282255 DOT SAA15407 AT envy DOT delorie DOT com> <002101c029da$d8ab7ae0$7013ddcc AT lhaglund> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 24 X-Trace: /K0ZEEFz2QyOfM5SWothCIGATaNEWJd3B3pKwPjM3nuOBg5DkJ8GJ471QBmUTdvgoYa7j6612upk!/M9OgLQJqdCfgTF0xqF3TzZVXLnBKB5aflEFOXtuYnPqdr+PtxIUZEiCiZzEZo8c+aERpbY/RYr8!d1FN/w== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Fri, 29 Sep 2000 13:12:06 GMT Distribution: world Date: Fri, 29 Sep 2000 13:12:06 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Fri, 29 Sep 2000 01:02:25 -0500, "Josh Haglund" wrote: >So what would I have to do to get this too work. Do I need those .exe files >on the other computer also, too put them back together or can I just > >C:\copy file1+file2+file3+file4 main This will stop at the first Ctrl+Z character in each file. >I'm still learning all the capabilities of djgpp. >What do I type? copy /b file1+file2+file3+file4 main The /b merges the files in binary mode, ignoring Ctrl+Z. --