# byteblitz
a command-line tool for viewing the binary content of files in different formats.
## Installation
On macOS/Linux, if you are using [Homebrew](https://brew.sh/)
```bash
brew install noahra/homebrew-byteblitz/byteblitz
```
On Windows, if you are using [Scoop](https://scoop.sh)
```bash
scoop bucket add scoop-byteblitz https://github.com/noahra/scoop-byteblitz && scoop install byteblitz
```
On Arch Linux (AUR)
```bash
yay -S byteblitz
```
## Usage
```bash
byteblitz
```
If you want to view values (values larger than a single byte) in little endian format you can use the following environment variable.
```bash
LITTLE_ENDIAN=1 byteblitz
```
## byteblitz in action ✨
You can switch between different formats.
![demo](./assets/formats.gif)
You can scroll through the values inside the file.
![demo](./assets/elements.gif)
You can even interpret values in little-endian format
![demo](./assets/endianess.gif)