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
- Host: GitHub
- URL: https://github.com/olillin/byteextractor
- Owner: olillin
- Created: 2024-05-13T19:33:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T20:26:05.000Z (about 2 years ago)
- Last Synced: 2025-01-29T15:33:58.314Z (over 1 year ago)
- Topics: cli, command-line-tool
- Language: Kotlin
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```