2024-10-24 14:20:52 +00:00
|
|
|
# Ndiff
|
|
|
|
|
|
|
|
Ndiff is an educational Rust rewrite of the [diff](https://linux.die.net/man/1/diff) program.
|
|
|
|
|
2024-10-26 18:15:59 +00:00
|
|
|
Of course, it's no way near as featured as
|
|
|
|
the [diff](https://linux.die.net/man/1/diff) command,
|
|
|
|
since it's utility is to learn Rust concepts by completing a simple project.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2024-10-26 18:42:09 +00:00
|
|
|
You can install and play around with the program using the command line:
|
2024-10-26 18:15:59 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
cargo install --git https://github.com/dnutiu/ndiff
|
2024-10-26 18:42:09 +00:00
|
|
|
```
|
|
|
|
|
2025-01-07 11:39:24 +00:00
|
|
|
To use the program run: `ndiff a.txt b.txt`
|