Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/txstate-etc/parity
Unordered diffs between files
https://github.com/txstate-etc/parity
Last synced: 22 days ago
JSON representation
Unordered diffs between files
- Host: GitHub
- URL: https://github.com/txstate-etc/parity
- Owner: txstate-etc
- License: mit
- Created: 2016-04-01T17:05:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-01T17:31:29.000Z (almost 9 years ago)
- Last Synced: 2024-11-08T14:48:27.655Z (3 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parity
Unordered diffs between filesThis application finds unique line count differences between files and then outputs a sorted list of those differences.
Example before.txt file
```
line a
line b
line c
line a
```Example after.txt file:
```
line d
line c
line a
line a
line c
line c
```Parity usage:
```
parity before.txt after.txt
-1 line b
2 line c
1 line d
```