Skip to content

cgilling/file-split

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

file-split

A tool to help extract a portion of a file

Usage

Currently the only functionality is to take one contiguous portion of a file and either write it to stdout or a file.

For example, if I wanted to output bytes 100 to 399 of file.dat to portion.dat I would do the following:

> file-split -file=file.dat -output=portion.dat -start=100 -end=400

Defaults for -start are the beginning of the file and -end the end of the file, so if I wanted the first 100 bytes of a file printed to stdout, I would do the following:

> file-split -file=file.dat -end=100

About

A tool to help extract a portion of a file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages