Top
Best
New

Posted by whyandgrowth 4 hours ago

Ask HN: What terminal shells do you use, and why?

2 points | 5 comments
hollerith 4 hours ago|
I know what you mean by "terminal shell", but note that most of my use of the shell is from Emacs and not from a terminal (or terminal-emulating app).

The command line is fed to a non-interactive instance of the shell (bash in my case) using the -c flag, then the standard output of the shell goes over a pipe (not a PTY or TTY) to an Emacs buffer.

I mention this because HN comments tend to conflate the Unix shell with the terminal/TTY interface. (An additional source of confusion or subtlety here is the fact that Emacs can communicate with the user using a terminal interface, so I will point out that my Emacs communicates with me over the Wayland display protocol.)

whyandgrowth 4 hours ago|
Thanks for explaining! I didn't know about this approach in Emacs, interesting.
gjvc 4 hours ago||
zsh and fish
robthebrew 4 hours ago|
zsh (because it is default on Apple), and bash when I cannot be bothered to translate to zsh.
whyandgrowth 4 hours ago|
Do you like the zsh itself?