• egonallanon@lemm.ee
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      9 months ago

      Yeah I’m a big fan of it. People complain about the verbosity of it but I like that for readability and autocomplete makes that a non issue I find. Plus if you really want to save on typing when using it as a terminal tool you can just make aliases for all your common commands.

      • okamiueru@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        9 months ago

        No complaints from me. Maybe if I had to use it. The thing that strikes me as particularly noisy is what seems to be either case insensitive commands and flags, or case sensitive and using Pascal-Case for both commands and flags. Which would be my least preferred option.

    • OfficerBribe@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      9 months ago

      I work pretty frequently with PS and have no issues with syntax. It’s easy to read and you always have autocomplete so there is just 1 extra click to get from -r to -Recurse. Same command could be also written as this due to alias feature.

      rm 'C:' -r -fo

      It’s just not the best practice since in PowerShell it is recommended to not use aliases for readability reasons. Also less chance to mess things up due to how verbose all commands and their parameters are.

        • OfficerBribe@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          9 months ago

          It is. Besides some very niche bugs everything in the core of PowerShell seems logical to me and easy to understand.