https://github.com/susonicth/sdbsearch
https://github.com/susonicth/sdbsearch
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/susonicth/sdbsearch
- Owner: SuSonicTH
- Created: 2023-04-01T20:01:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-26T23:34:27.000Z (almost 2 years ago)
- Last Synced: 2025-02-24T14:56:30.528Z (4 months ago)
- Language: C
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sdbsearch
simple tool to read records from an Intermediate table into a prefix tree for searching number.
Also has an option to export the record in a csv file.## compile
just call `./make` or compile directly with `gcc -o sdbsearch sdbsearch.c`## usage
```
sdbsearch V0.1usage: sdbserch [OPTIONS] [NUMBER 1] [NUMBER 2] ... [NUMBER n]
options:
-h, --help print this help
-a, --all show all matching numbers
-n, --nofilter do not filter 43 and length 20
-e, --export write all records in csv format to stdout
-v, --verbose verbose output```