Content
@
0 reply
0 recast
0 reaction
Steve
@sdv.eth
What’s a handy cli tool you think others probably don’t but should know about? Mine would be tldr; which is a community contributed and modern replacement for man pages. Gets you the information you’re looking for 90% of the time with way less reading. h/t to @we for putting me down on it
12 replies
0 recast
12 reactions
jtgi
@jtgi
jq – parse, transform, and format json. Super handy for off the cuff queries w/curl, pretty printing, scraping, processing files, even small bash scripts. examples: pretty print: curl $url | jq export user fields as csv: curl $url | jq -r '.result.users[] | [.id, .name] | @csv > users.csv'
2 replies
0 recast
3 reactions
Steve
@sdv.eth
+1 to jq! I used it the other day to parse some data. Super handy to not have to whip up a quick node or python script to handle json in the terminal
0 reply
0 recast
0 reaction
Moon
@moon.eth
jq is the best.
0 reply
0 recast
0 reaction