Wrote up my thoughts on why #nushell matters. And yes, they get a bit spicy 😅

https://www.jntrnr.com/case-for-nushell/

The case for Nushell

Sophia June Turner

@jntrnr mostly-irrelevant nit: zsh has a for loop shortcut that's even nicer than fish's imo: `for i in $(seq 1 10); echo $i` ; you give bash syntax in the article, which zsh supports, but that's a nice touch.

(I like and use nushell occasionally)

@jntrnr (Also you don't even need `seq`! in both bash and zsh, `{1..10}` does the same thing. With the zsh shortcut synatx, you get `for i in {1..10}; echo $i` which is quite nice)