choose-rust

Fast, human-friendly alternative to cut and awk for text processing

brewmacoslinux
Try with needOr install directly
Source

About

Human-friendly and fast alternative to cut and (sometimes) awk

Commands

choose

Examples

Extract specific fields from comma-separated values$ echo 'a,b,c,d' | choose 1,3
Select columns from space-separated output$ ps aux | choose 0,10
Extract fields with custom delimiter$ echo 'one:two:three' | choose -f ':' 0,2