A free text file joiner that joins multiply .txt files together

Discussion in 'Programming' started by Nabeel C, Mar 13, 2010.

  1. #1
    what i am trying to do is join two text (.txt) files using a software but not sure where I can get one for free. So, please if anyone knowns a text joiner that joins multiple .txt files into one, post it here!
     
    Nabeel C, Mar 13, 2010 IP
  2. krsix

    krsix Peon

    Messages:
    435
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    cat file1 file2 file3 >newfile

    free, open source, etc.
     
    krsix, Mar 13, 2010 IP
  3. camjohnson95

    camjohnson95 Active Member

    Messages:
    737
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    60
    #3
    from command prompt in windows:
    
    copy /a a.txt + b.txt + c.txt result.txt
    
    Code (markup):
    joins a,b and c.txt into result.txt
    parameters: /a (text)
    /b (binary) ...
     
    camjohnson95, Mar 13, 2010 IP