Results 1 to 4 of 4

Thread: How to join multiple binary files into one like copy /b in msdos

  1. #1
    Join Date
    Nov 2005
    Location
    Spain
    Beans
    99
    Distro
    Ubuntu 16.04 Xenial Xerus

    How to join multiple binary files into one like copy /b in msdos

    In msdos you can do "copy /b part1 + part2 + part3 file.ext". How can this be done in linux?

  2. #2
    Join Date
    Apr 2006
    Location
    Tokyo, Japan
    Beans
    1,653
    Distro
    Ubuntu

    Re: How to join multiple binary files into one like copy /b in msdos

    Hmm... CAT command may do that...
    Code:
    cat part* > file.ext
    UMUNTU NGUMUNTU NGABANTU (UBUNTU): A person is a person through other persons
    1 UBUNTU (x86) @ Home, 1 UBUNTU (ppc) @ iBook Laptop, 2 UBUNTUs (x86) @ University

  3. #3
    Join Date
    Nov 2005
    Location
    Spain
    Beans
    99
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: How to join multiple binary files into one like copy /b in msdos

    ok thanks

  4. #4
    Join Date
    Aug 2006
    Location
    Melbourne
    Beans
    194
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: How to join multiple binary files into one like copy /b in msdos

    IIRC there's a tool called chunk that seems to do the same.

    chunk part.01 part.02 part.03 final

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •