An open API service indexing awesome lists of open source software.

https://github.com/ohbamah/dividaetimpera

A tool can divide a file into several parts (by number or size) and reassemble the divided files.
https://github.com/ohbamah/dividaetimpera

c file-format file-manager tool

Last synced: about 1 year ago
JSON representation

A tool can divide a file into several parts (by number or size) and reassemble the divided files.

Awesome Lists containing this project

README

          

# OPTIONS
**--divida** : Divide a file passed as parameter (not compatible with other options).

**--impera** : Reunite the sequence corresponding to the file param passed (only one file, is useless to pass all file sequence) (not compatible with divida).

**--in-bytes X** : Divide the file passed as parameter in several parts, each X bytes long (no compatible with --impera and --in-part).

**--in-parts N** : Divie the file passed as parameter in N parts (not compatible with --impera and --in-parts).



**-d** corresponding to --divida

**-i** corresponding to --impera

**-b** corresponding to --in-bytes

**-p** corresponding to --in-parts

# USAGE
_Exemple 1:_

./dei -db 1000000 small_image.png ## separate the file in different file of each 1Mbytes long.

./dei -i small_image.pngN.dei ## here the N is any part of the sequence.



_Exemple 2:_

./dei -dp 5 big_file.tgz.rar ## separate the file in 5 files.

./dei -i big_file.tgz.rarN.dei ## here the N is any part of the sequence.

# INFO
The name of the file should not be greater than 26 (or 27/28 if there is many parts).

Max parts possible is 254.