OC by @[email protected]

I’ve been trying nushell and words fail me. It’s like it was made for actual humans to use! 🤯 🤯 🤯

It even repeats the column headers at the end of the table if the output takes more than your screen…

Trying to think of how to do the same thing with awk/grep/sort/whatever is giving me a headache. Actually just thinking about awk is giving me a headache. I think I might be allergic.

I’m really curious, what’s your favorite shell? Have you tried other shells than your distro’s default one? Are you an awk wizard or do you run away very fast whenever it’s mentioned?

  • ORbituary@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    3
    ·
    2 days ago

    I don’t think that’s what I’d actually want, no. I want GNU find functionality for this to be a viable shell replacement. It’s… neat, but it’s no daily driver.

    back to /bin/zsh for me!

    • chrash0@lemmy.world
      link
      fedilink
      arrow-up
      11
      ·
      2 days ago

      you can absolutely do what you want. GNU find is external and since it conflicts with a builtin can be aliased or referenced like ^find.

      the syntax is new for sure, and it’s not for everyone.

      been daily driving for over a year

      • ORbituary@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        1
        ·
        2 days ago

        I prefer flow to futz. Thanks for the info. Glad it’s working for you. I’m staying with what works well for me.

        • BatmanAoD@programming.dev
          link
          fedilink
          arrow-up
          2
          arrow-down
          1
          ·
          14 hours ago

          You could also just alias find back to ^find. I don’t use nushell as my daily driver for other reasons, and I agree with the comment above that it’s a bit questionable for them to have a built-in with that name, but I don’t understand why you’d even try out a new shell, let alone one that’s radically different from POSIX-style shells, much less complain online about the shell you just tried, when you’re already happy with the shell you’re using and are not willing to adapt any habits or explore the configuration options to match your needs.

    • dice@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      2 days ago

      I switched from GNU find to fd 2 years ago, unbeknownst to me at the time, this unlocked nu as a daily driver, which I’ve really enjoyed for the past year. I do fire up zsh semi-regularly when needed to escape some hairbrained corners. Scripting in nu is very nice thanks to the data manipulation and closure support. So nice to move from text manipulation to semantic structuring.

    • cosmicrose@lemmy.blahaj.zone
      link
      fedilink
      English
      arrow-up
      5
      ·
      2 days ago

      They kinda have to replace some coreutils like find from scratch to be compatible with their philosophy of piping data tables instead of text. It’s super cool and ends up being really powerful but yeah it’s a whole new ecosystem which makes it pretty much impossible to be a drop-in shell replacement.