in reply to Re: How to merge Huge log files (each 10 MB) into a single file
in thread How to merge Huge log files (each 10 MB) into a single file

I am working on windows platform, not able to try the cat command

  • Comment on Re^2: How to merge Huge log files (each 10 MB) into a single file

Replies are listed 'Best First'.
Re^3: How to merge Huge log files (each 10 MB) into a single file
by ikegami (Patriarch) on Sep 03, 2009 at 14:26 UTC

    cat works fine in Windows too provided you install it, say, as part of cygwin. But you can also do

    copy /b FILE1+FILE2+FILE3+FILE4 bigone
Re^3: How to merge Huge log files (each 10 MB) into a single file
by SuicideJunkie (Vicar) on Sep 03, 2009 at 14:48 UTC
    Under windows, you would use type instead of cat: type file1 file2 file*.* > output.txt