this post was submitted on 24 Jan 2025
43 points (100.0% liked)

Programming

17935 readers
160 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

For those of you unaware: https://nushell.sh/

This is by far the most unique shell out there, since it doesn't use raw text as output/input to command line calls, but instead an actual data structure. It's like if every CLI call returned a database table, in a way.

you are viewing a single comment's thread
view the rest of the comments
[–] TheV2 2 points 2 days ago

I use it as the default shell only in my terminal (with fish completion). You still have to deal with breaking changes and inconsistency. On top of that, you need to wrap a lot of your commonly used commands and tools to take full advantage of it. But personally I consider it worth learning and using. Not only do I hate working with raw text, I also love the visual and interactive data representation. And working with existing tools is honestly not a huge problem. It's just what you'd usually do regularly. Obviously POSIX-compliant shells in combination with many tools like jq, too are already capable of nushell's power. But I just like to have it included in the shell language, so I can work with the data more casual.

I couldn't tell you why you'd use it instead of Powershell. I just never tried Powershell on Linux.