https://github.com/grisu48/unsplit
In-situ binary file merger
https://github.com/grisu48/unsplit
files linux split-files
Last synced: 6 months ago
JSON representation
In-situ binary file merger
- Host: GitHub
- URL: https://github.com/grisu48/unsplit
- Owner: grisu48
- License: mit
- Created: 2017-09-06T09:03:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T19:59:08.000Z (almost 7 years ago)
- Last Synced: 2025-02-15T13:17:30.897Z (about 1 year ago)
- Topics: files, linux, split-files
- Language: C++
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unsplit
[](https://travis-ci.org/grisu48/unsplit)
In-situ binary file merger
This is a really simple tool to merge file that have been splitted using the 'split' command. The tools appends all the given files to the first one on-place.
## Build instructions
A simple make should do the job for most systems
make
The Makefile is trivial and can be edited easily. For installing the program in the system use
sudo make install
## Usage
For instance to merge the files xaa xab xac and xad, type:
unsplit xaa xab xac xad
The file xaa is the merged file after the call.
## Features
Fast in-sito tool for merging splitted files. If something went wrong during the process (e.g. no more disk space available) the program tries to truncate the file back to it's original state.
In contrast to the `cat` tool that is supposed to be the canonical way of merging files together, this program tries to recover the original file in case something went wrong.