Ask HN: Best Command-Line Applications?
1–10 of 393 posts
Re: Ask HN: Best Command-Line Applications?
#2Re: Ask HN: Best Command-Line Applications?
#3- Pandoc a handy document format converter: https://pandoc.org/ - Ripgrep, a faster grep: https://github.com/BurntSushi/ripgrep - There are quite a few prompt-toolkit based CLI which have been really nice: * mycli (https://github.com/dbcli/mycli), pgcli (https://github.com/dbcli/pgcli) * ptpython/ptipython (https://github.com/prompt-toolkit/ptpython) - Youtube-dl: http://rg3.github.io/youtube-dl/ - fzf a fuzzy finder for the console: https://github.com/junegunn/fzf - jq for JSON manipulation: https://stedolan.github.io/jq/ - Miller for CSV/TSV: https://github.com/johnkerl/miller
I would imagine you have already scoured the "awesome" lists: https://github.com/agarrharr/awesome-cli-apps#terminal-utili...
Re: Ask HN: Best Command-Line Applications?
#4Re: Ask HN: Best Command-Line Applications?
#5Re: Ask HN: Best Command-Line Applications?
#6A few of the ones I use almost daily - Pandoc a handy document format converter: https://pandoc.org/ - Ripgrep, a faster grep: https://github.com/BurntSushi/ripgrep - There are quite a few prompt-toolkit based CLI which have been really nice: * mycli ( https://github.com/dbcli/mycli ), pgcli ( https://github.com/dbcli/pgcli ) * ptpython/ptipython ( https://github.com/prompt-toolkit/ptpython ) - Youtube-dl: http://rg3…
Re: Ask HN: Best Command-Line Applications?
#7It's really worth the time to learn. It's pre-installed basically everywhere, it's amazingly useful. It has the features of a modern text editor all in a command line.
Re: Ask HN: Best Command-Line Applications?
#8 watch df -h
watch ls -sh
watch cat file
watch nmcli device wifi list
watch -n 10 --color curl -s wttr.inRe: Ask HN: Best Command-Line Applications?
#9Similarly jq (https://stedolan.github.io/jq/) for JSON data is great.