Frawk

frawk — fast AWK-like CLI for processing CSV/TSV/text with structured JSON output

javimosch 4c60be4 513 B Updated

File contents

frawk Plugin

frawk is a fast AWK-like language for processing CSV, TSV, and text files with typed columns and structured JSON output.

Quickstart

# Process a CSV file with typed columns
frawk -F, '{print $1, $2}' data.csv

# Use typed column syntax
frawk -F, 'cols=string:symbol,float:price; {print symbol, price}' data.csv

# Output JSON
frawk -F, '{print json($0)}' data.csv

javimosch/supercli/tree/main/plugins/frawk/skills/quickstart commit 4c60be4068

Frequently asked questions

npx skillmds@latest add javimosch/frawk