hex_dump 0.1.5

A CLI that can read print and modify binary file
Documentation
# Convert excel file to csv file

[![Crates.io](https://img.shields.io/crates/v/loa.svg)](https://crates.io/crates/hex_dump)
[![Rust](https://img.shields.io/badge/rust-1.56.1%2B-blue.svg?maxAge=3600)](https://gitlab.com/andrew_ryan/hex_dump)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/andrew_ryan/hex_dump/-/raw/master/LICENSE)

## install

```sh
cargo install hex_dump
```

```bash
hex_dump read print and modify binary file

USEAGE:
hex_dump <file>
hex_dump <file> <adress> <column_num> <new_hex_value>
Example:
hex_dump demo.txt                => Display hex
hex_dump demo.txt 00000020 11 25 => Modify that hex value of address is 00000020 and 11th column to 23
hex_dump file.zip 00000000 6 00  => Repair Fake Encrypted zip file 
hex_dump demo.txt 00000020 11 "2E 54 65 6F" => Modify that hex value of address is 00000020 and start column 11 to "2E 54 65 6F"
```
![demo](https://p6-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/681ad793d4ef41918801fdeaaeb774fb~tplv-k3u1fbpfcp-watermark.image)