https://github.com/djc/edit-chunks
Split out chunks of a large file for editing, then put them back together again
https://github.com/djc/edit-chunks
Last synced: 8 months ago
JSON representation
Split out chunks of a large file for editing, then put them back together again
- Host: GitHub
- URL: https://github.com/djc/edit-chunks
- Owner: djc
- License: apache-2.0
- Created: 2017-07-31T18:40:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T12:50:19.000Z (over 5 years ago)
- Last Synced: 2025-03-11T20:47:04.863Z (9 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# edit-chunks
Splits byte ranges out of a (large) file and writes them into separate files
for convenient editing. Then combines the original and edited parts again.
Help output:
```
edit-chunks 0.1.0
Dirkjan Ochtman
Split out chunks of a large file for editing,
then put them back together again.
USAGE:
edit-chunks
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
combine combine a previously split file again
help Prints this message or the help of the given subcommand(s)
split split a file
```
Example command-line:
```shell
$ ./edit-chunks split large-file.dat 1429423-1439934
$ $EDITOR large-file.dat.part.0
$ ./edit-chunks combine large-file.dat.spec
```
All feedback welcome in the GitHub [issue tracker](https://github.com/djc/edit-chunks/issues).