edit-chunks

Crates.ioedit-chunks
lib.rsedit-chunks
version0.1.1
sourcesrc
created_at2017-07-31 19:04:10.174561
updated_at2020-06-05 12:50:10.713276
descriptionSplit out chunks of a large file for editing, then put them back together again
homepagehttps://github.com/djc/edit-chunks
repositoryhttps://github.com/djc/edit-chunks
max_upload_size
id25863
size35,864
Dirkjan Ochtman (djc)

documentation

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 <first (at) last . nl>
Split out chunks of a large file for editing,
then put them back together again.

USAGE:
    edit-chunks <SUBCOMMAND>

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:

$ ./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.

Commit count: 12

cargo fmt