An open API service indexing awesome lists of open source software.

https://github.com/0xpr03/spreadsheet_finder

Find spreadsheet files in child folder matching some regex
https://github.com/0xpr03/spreadsheet_finder

files finder ods rust

Last synced: 8 months ago
JSON representation

Find spreadsheet files in child folder matching some regex

Awesome Lists containing this project

README

          

## Spreadsheet Finder

Quick'n dirty find spreadsheet files containing specific values matching your regular expression.

Example:
```
cargo run --release -- -r "^Umlaute$" "/Temp/Korrekturen"
```

Finds all ods files containing "Umlaute" as cell value.
You can specify the matcher for filenames also (default value used here):
```
cargo run --release -- --fileregex ".*\.(xls|xlsx|xlsm|xlsb|xla|xlam|ods)" "-r "^Umlaute$" "/Temp/Korrekturen"
```