csv

Process CSV files using standard bash tools (awk, cut, sort, grep).

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "csv" with this command: npx skills add vercel-labs/bash-tool/vercel-labs-bash-tool-csv

CSV Processing Skill

Process CSV files using standard bash tools (awk, cut, sort, grep).

Available Scripts

analyze.sh

Get statistics and summary of a CSV file.

bash /skills/csv/scripts/analyze.sh data.csv

filter.sh

Filter rows where a column matches a value.

bash /skills/csv/scripts/filter.sh data.csv <column_number> <value>

select.sh

Select specific columns from CSV.

bash /skills/csv/scripts/select.sh data.csv <col1,col2,col3>

sort.sh

Sort CSV by a column.

bash /skills/csv/scripts/sort.sh data.csv <column_number> [--numeric] [--reverse]

Examples

Show CSV summary

bash /skills/csv/scripts/analyze.sh sales.csv

Filter where column 3 equals "active"

bash /skills/csv/scripts/filter.sh users.csv 3 active

Select columns 1, 2, and 4

bash /skills/csv/scripts/select.sh data.csv 1,2,4

Sort by column 2 numerically in reverse

bash /skills/csv/scripts/sort.sh data.csv 2 --numeric --reverse

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

text

No summary provided by upstream source.

Repository SourceNeeds Review
General

Slack Thread Export

Export Slack thread messages from a logged-in Slack web tab into CSV using an attached Chrome Browser Relay tab. Use when the user wants to collect Slack con...

Registry SourceRecently Updated
680Profile unavailable
General

SQL Data Analyst

Natural language to SQL. Ask questions about your data in plain English, get queries, results, and explanations. Supports SQLite, PostgreSQL, and MySQL. Impo...

Registry SourceRecently Updated
641Profile unavailable
General

next-best-practices

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

Repository SourceNeeds Review
34.9K720vercel-labs