fileql

Run SQL-like queries on local files without a database

brewmacoslinux
Try with needOr install directly
Source

About

Run SQL-like query on local files instead of database files using the GitQL SDK

Commands

fileql

Examples

Query a CSV file with SQL syntax$ fileql 'SELECT * FROM data.csv WHERE age > 30'
Filter JSON data and select specific columns$ fileql 'SELECT name, email FROM users.json WHERE active = true'
Join data from multiple files$ fileql 'SELECT a.id, b.value FROM file1.csv a JOIN file2.csv b ON a.id = b.id'