choose over awk 04-03-24 % Sometimes typing out awk '{print $1}' just takes too long. Today I decovered choose. It makes selecting a field from an output much faster. Now instead of: $ gss | rg awk | awk '{ print $2 }' | xargs hx I run: $ gss | rg awk | choose 1 | xargs hx - [ awkchoose] all snippets