cat customers.csv and the columns slide off the right edge of your terminal. You don't really want to open a spreadsheet just to spot-check eight rows. csv-peek customers.csv prints an aligned table in 1 ms — numbers right-aligned in cyan, dates in yellow, booleans in magenta, the embedded comma in "hello, world" not breaking alignment because the parser actually understands quoting. Single dependency ( clap ), sub-1 MB stripped binary, 51 tests. 📦 GitHub : https://github.com/sen-ltd/csv-peek $ cat customers.csv id ,name,email,signup_date,active,balance,note 1,Alice Suzuki,alice@example.com,2024-01-15,true,1280.50, "first 10 customers" 2,Bob Tanaka,bob@example.com,2024-02-03,true,42.00, … $ csv-peek customers.csv ┌────┬──────────────┬───────────────────┬─────────────┬────────┬─────────┬────────────────────┐ │ id │ name │ email │ signup_date │ active │ balance │ note │ ├────┼──────────────┼───────────────────┼─────────────┼────────┼─────────┼────────────────────┤ │ 1 │ Alice Suzuki │ alice@example.com │…