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

https://github.com/olillin/byteextractor

Copy a range of bytes from one file to another
https://github.com/olillin/byteextractor

cli command-line-tool

Last synced: over 1 year ago
JSON representation

Copy a range of bytes from one file to another

Awesome Lists containing this project

README

          

# ByteExtractor

Copy a range of bytes from one file to another.

## Usage

```
Arguments:
input -> The file to read { String }
output -> The file write to { String }
Options:
--start, -s [0] -> The byte to copy from inclusive, if negative the position will be from the end of the file. { Long }
--end, -e [-1] -> The byte to copy until inclusive, if negative the position will be from the end of the file. { Long }
--help, -h -> Usage info
```