Live data from Hacker News

Ask HN: What are your favorite terminal programs?

news.ycombinator.com

21–30 of 203 posts

Re: Ask HN: What are your favorite terminal programs?

#22
Some of them that I can't live without are

    - git-standup http://github.com/kamranahmedse/git-standup

    - z https://github.com/rupa/z

    - ZSH https://github.com/robbyrussell/oh-my-zsh

Apart from that, some that I use time to time

    - curl-size https://github.com/egoist/curl-size

    - ripgrep https://github.com/BurntSushi/ripgrep

    - jq https://github.com/stedolan/jq

    - asciinema https://github.com/asciinema/asciinema

Re: Ask HN: What are your favorite terminal programs?

#28

rg => (ripgrep) alternative to ack and grep.

There’s also ag (the silver searcher)

I must confess based on the strength of the argument buruntsushi had with the Ripgrep comparison I switched from ag to rg and have not looked back. I was a daily ag user but I don’t need the advanced regex support and I do like the speed.

Re: Ask HN: What are your favorite terminal programs?

#30
post #27

cd because I never had to lookup how to use it EDIT: hm it doesn't even have a man/info page. Where can you learn about "cd" or "cd -", then?!

`cd` is not a command; it is built into your shell.

Some systems, like OS X and CentOS, map the cd man page to builtin which lists all the shell builtins and lets you know you should look at your shell's man page.

Post reply on HN