https://github.com/intelorca/bcmp
Binary diff program
https://github.com/intelorca/bcmp
Last synced: 14 days ago
JSON representation
Binary diff program
- Host: GitHub
- URL: https://github.com/intelorca/bcmp
- Owner: IntelOrca
- Created: 2023-01-13T00:10:54.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T00:11:11.000Z (over 3 years ago)
- Last Synced: 2026-06-14T05:33:09.730Z (14 days ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bcmp
A simple command-line utility for comparing two files byte by byte
## Usage
```
bcmp [-h] [-v] file1 file2
```
## Options
- `-h`: Display help message
- `-v`: Display version
## Examples
```
bcmp file1.txt file2.txt
```
Compares file1.txt and file2.txt byte by byte.
```
bcmp -v
```
Displays the version of bcmp.
```
bcmp -h
```
Displays help message
## Copyright
Copyright (C) 2023 Ted John and ChatGPT
## Note
The program compares two files byte by byte and print the byte address and the value of the two bytes for each difference all in hexdecimal.