https://github.com/zevv/glbl
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zevv/glbl
- Owner: zevv
- Created: 2023-01-04T15:02:35.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T15:04:34.000Z (about 3 years ago)
- Last Synced: 2025-09-06T21:53:37.980Z (6 months ago)
- Language: C++
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
usage: ./glbl [options] [good_file [...]]
options:
-c FILE load configuration from FILE. Defaults to ~/.glbl.conf
-g omit good lines
-b omit bad lines
-s omit seen lines
-d debug: show the normalized strings
-h show this help
description:
This tool reads zero or more 'good' files followed by one 'bad' file.
All line of the files are normalized by removing substrings that match
list of given regular expressions. When parsing the 'bad' file, lines
are classified into three groups that are displayed in different colors:
good: lines that were seen in one of the 'good' files
bad: lines that are were not seen in one of the 'good' files
seen: 'bad' lines that are seen more then once
```