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.
- Host: GitHub
- URL: https://github.com/ohbamah/dividaetimpera
- Owner: ohbamah
- Created: 2025-01-24T03:48:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-25T01:49:55.000Z (over 1 year ago)
- Last Synced: 2025-03-31T00:26:19.600Z (about 1 year ago)
- Topics: c, file-format, file-manager, tool
- Language: C
- Homepage:
- Size: 76.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Dei: dei
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.