

The largest awesome curated list of command line programs (CLI/TUI) with source data organized into CSV files, making it easy to filter, search, and analyze CLI tools programmatically.
Loading more......
Awesome CLI Apps in CSV is the largest collection of command-line tools (CLI/TUI) available, with source information maintained in convenient CSV file format for easy searching and filtering.
Each entry typically includes:
The CSV format allows:
# Find all Python CLI tools
csvgrep -c language -m "Python" tools.csv
# Get tools in productivity category
csvgrep -c category -m "Productivity" tools.csv
# Sort by GitHub stars
csvsort -c stars -r tools.csv
# Find tools with > 1000 stars
awk -F',' '$7 > 1000' tools.csv
# List all categories
awk -F',' '{print $3}' tools.csv | sort -u
The CSV format makes it easy to:
Ideal for: