• Overspark@piefed.social
    link
    fedilink
    English
    arrow-up
    23
    arrow-down
    1
    ·
    2 days ago

    Then give nushell a go. It’s basically a modern implementation of some of the better ideas Powershell had.

      • flying_sheep@lemmy.ml
        link
        fedilink
        arrow-up
        11
        ·
        edit-2
        2 days ago
        1. Types.

          You explode lists manually into items when calling commands on a variable list of arguments instead of “quoting variables” to prevent them from exploding.

          Who came up with the bullshit idea that exploding strings into words is such a common use case that this footgun is preferable to have an “explode lists” syntax?

        2. Errors. No more set -euo pipefail; shopt -s lastpipe to beat some semblance of sanity into bash

        • kn33@lemmy.world
          link
          fedilink
          English
          arrow-up
          4
          ·
          edit-2
          1 day ago

          One of the things I really like about PowerShell is the “verb-noun” convention. It makes things a lot easier when learning by examples. Wtf is a sed or an awk? But New-Item -Type Directory oh yeah that makes sense.

          • JackbyDev@programming.dev
            link
            fedilink
            English
            arrow-up
            2
            ·
            9 hours ago

            To be fair, the comparison there is mkdir which means make directory, but I don’t doubt there are better examples.