Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

How merge multiple files into a file

Featured Replies

  • Author
  • Localization

lm160, posted Tue Oct 13, 2015 12:54 pm (8414)


For example:
1.bin - >
2.bin - > new.bin
3.bin - >
I want to merge these three files into one file, and I know it can be combined with "get TMP long" and "put TMP long" to combine these three files to a file.But in fact, I'm going to merge a lot of files, and the OFFSET and SIZE of each file is recorded in another file. If it is in accordance with the above order, the efficiency is too slow.

Is there a direct command to write a file to a new file?
  • Author
  • Localization

aluigi, posted Tue Oct 13, 2015 1:11 pm (8415)


The basic steps to do that are:
Code:
get SIZE asize  # takes the size of the current file
append # enable the append mode for concatenating them
log "new.bin" 0 SIZE
append # disable concatenation (not necessary if its there are no other operations)

With those few lines you have a script that you can use on all the files you want to concatenate.
For example when you launch quickbms with double-click, select this script, then select all the files you want to concatenate and then the output folder.
It should work very well, try it.

Otherwise I have a command-line tool called bincat.
  • Author
  • Localization

lm160, posted Tue Oct 13, 2015 1:54 pm (8417)


aluigi wrote:
The basic steps to do that are:
Code:
get SIZE asize  # takes the size of the current file
append # enable the append mode for concatenating them
log "new.bin" 0 SIZE
append # disable concatenation (not necessary if its there are no other operations)

With those few lines you have a script that you can use on all the files you want to concatenate.
For example when you launch quickbms with double-click, select this script, then select all the files you want to concatenate and then the output folder.
It should work very well, try it.

Otherwise I have a command-line tool called bincat.


Woo~ thanks, in packing,
look like fast than before.
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.