hi-v-rocknroll 2 days ago

I like the ideas of Dune and Nu, which I think were trailblazed by powershell to a degree. The problems of pure *NIX pipe philosophy with text as the lingua franca were persistent parsing problems and escaping. However, the problems of going to far in the way powershell went was it was too radical having to reimagine/replace/relearn almost everything, and generally more difficult to accomplish simple text manipulation. Nu at least maintains most of the *NIX shell UX. Maybe at some point in the future, we will reach parity to where there will fusion of the main DSLs, shells, and programming languages into a runtime interaction system that is somewhere between psql, Erlang shell, nu, and Squeak where there is programming language-OS parity obliterating the distinctions between programming languages, command shells, and DBMS shells. One can dream of a future where perhaps it will be possible to write a function, library, or program in any language one chooses and call it from any other shell or language without swig or ceremony.

  • Brian_K_White 2 days ago

    The problem of powershell is not merely thet it's new and different, and not merely that you have to learn a new and different way to get a given task done.

    Powershell makes some things possible or easier that weren't possible or easy, but only at the expense of making other things either impossible or at least vastly less practical, and all in all it's a bad trade off and a wrong set of priorities for the job it claims to fill, or at least for the job bash currently fills. It's not that bash is a gold standard, just that it's not fundamentally wrong.

    • xelamonster 2 days ago

      It's also just absurdly verbose for a language intended mainly for manual input. I get annoyed having to type out `sudo systemctl` multiple times in a row, in Powershell every single command is at minimum that long. Which makes it way more difficult to memorize the commands too.

      • WorldMaker 2 days ago

        There are ton of aliases. It's "impolite" [0] to use aliases in scripts and documentation so looking at PowerShell examples is way more verbose than actually using it day to day in a REPL. Sure I could write `Set-Location` a million times a day, but I just use `cd` in the old ways. Same with `Get-ChildItem`, I tend to just use `ls` myself because of ancient habits. (I find it interesting how many have been moving to `gci` instead as the more PowerShell-native `ls` alias. I've not been convinced to do that myself, but I think it has to do with `gci` is way more powerful than most shells' `ls` and is used to navigate everything from folder structures to object structures including that its not a bad `jq` if you convert JSON files to PowerShell objects.)

        [0] It's from a version of the Python ethos that code is read way more often than it is written, so when you are polishing PowerShell code to share with others you expand all the aliases so that it is easier to read.

      • Vegenoid 2 days ago

        IMO, getting comfortable with and tuning autocomplete makes this a non-issue, and the benefit of the verbose commands is that they are very discoverable.

      • emmelaich a day ago

        Do you know that there are short versions? e.g. gc for Get-Content

      • abhinavk a day ago

        > sudo systemctl

        Make an alias like sctl. Takes 5 seconds.

        Or an abbr if you are using fish. They are more like text-expanders than aliases.

      • 7bit a day ago

        Really? I only have to remember Item instead of touch, mkdir, RM, rmdir, cp, mv. All commands that have just different verbs before the Noun in Powershell. And that's for every single cmdlet out there.

        It sounds to me that you're unfairly putting your existing knowledge about Linux shells into your criticism of PowerShell. If you want to be fair that criticism should come from the POV of someone who does not now both and now wants to memorise it. And whether or not commands are short or long does not matter. People memorise lyrics, or names of hundreds of people. Length is not a factor, objectively.

        And alias do exist.

    • TristanBall a day ago

      Curious as to what's "vastly less practical" in powershell?

  • Aurelius108 a day ago

    I was scripting on a windows machine which didn’t have WSL setup and decided to learn PowerShell. After a week or so of scripting with PowerShell and seeing how intuitive and robust the syntax is, something changed in my brain and I decided I never again wanted to deal with bash and its endless quirks and brittleness. It’s unnatural to have to wrap every variable access with “${}”, that unnatural key sequence always caused a break in my flow. Anyway I reach for Python sooner and really hunger for a clean, robust nix shell. I hope powershell has instilled this in many people and it drives adoption of something better

    • dgan a day ago

      I have tried to do the same, but i have opposite experience. I just can't grok the syntax, it always seems like a magician pulling out another "Haha! I bet you haven't seen this one coming !"

      Like, i can't even construct the abstract model of how it's supposed to work

      • brazzledazzle 17 hours ago

        Would you be able to provide an example? I'm not doubting your experience, just incredibly curious since I had the opposite experience.

        • dgan 15 hours ago

          Sure thing :

          $env::Path (the semicolon? so Path is not quoted here? But when I assign a value it's quoted?)

          Dir -r | %($_.Name.ToLower) ( what is this? statement dreamed by utterly deranged)

          They took us for absolute fools

      • plaguuuuuu 18 hours ago

        I'm even a windows .NET developer and I also find Powershell extremely weird. I'm not sure what it is.

  • wodenokoto 2 days ago

    > too radical having to reimagine/replace/relearn almost everything

    I switched to zsh because at the time I thought it had better autocomplete, but honestly I use it as I would bash. And I don't think it was worth it to change a little bit.

    To change shell I think the change _should_ be radical.

    • idunnoman1222 a day ago

      But it is bash…

      • MrDrMcCoy 15 hours ago

        Not quite. It has some incompatible default settings, and is missing a small percentage of obscure bash features that I sometimes like to rely on. I'm sure I could do it all with zsh just fine, but it would be more work for me mentally.

  • kitd 2 days ago

    A day or so there was this: https://news.ycombinator.com/item?id=41558081

    Imagine your shell's model not being a command line console but a spreadsheet!

    • ghayes a day ago

      I wonder if there's a good middle ground where unix commands could opt into a structured output, and until they exist, you could shim via `ls -la | shim "ls -la" |> ".modified_time"`. Then one day it could be `ls -la |> ".modified_time"` when structured data is supported natively by the program or command. I feel every project ends up dying since it needs to support every command all at once to be useful.

    • actionfromafar 2 days ago

      Shades of Q, APL and other array languages, but visual by default. Maybe an APL spreadsheet-shell would fit the bill? :-D

  • 082349872349872 19 hours ago

    > One can dream of a future where perhaps it will be possible to write a function, library, or program in any language one chooses and call it from any other shell or language without swig or ceremony.

    Was that not VMS?

  • packetlost 2 days ago

    > One can dream of a future where perhaps it will be possible to write a function, library, or program in any language one chooses and call it from any other shell or language without swig or ceremony

    I mean, there's a reason text was selected, it's the lowest common denominator. What you're asking for is universal FFI, which we already have that for the most part: C. The problem ultimately turns into runtime and resource management issues when crossing language boundaries, that is, unless you use OS primatives (pipes, sockets, shared memory, processes, etc.) and use message passing/pipelines exclusively. Then we're back to plaintext.

    There's a ton of non-printable characters in ASCII that are useful as delimiters for non-keyboard interactive programs that are largely vestigial. One could at least consider reusing them for delimiters and special control sequences for message passing, but without some sort of standardization it's limited in practical use.

    • Brian_K_White 2 days ago

      The problem with those ascii values is editors don't display them and there are no keyboard keys to type them.

      The reason csv exists is because you can actually see and type all parts of it, on anything, any platform, any hardware, any software, any age, even a mechanical typewriter, even a pencil. That is not merely nice, it's essntially priceless, infinitely, incalculably valuable. The utility outweighs the problems as big as they absolutely are. Actually the same is true for json, yaml, xml...

      • packetlost 2 days ago

        > The problem with those ascii values is editors don't display them and there are no keyboard keys to type them.

        Did you read my post? Like, every word of it? Being able to type a control sequence is not particularly useful for ephemeral data in a message-passing between programs context. It's absolutely important for persistent, editable data. It seems like more of a feature to me to use these special characters for special contexts and not have escaping typeable characters be load-bearing.

        Further, my editor seems to print control characters just fine, though entering them would be a bit of a pain and the behavior is likely configurable.

    • superb_dev a day ago

      Nitpick but I wouldn’t call C a universal FFI, it’s merely the de facto FFI. C can’t meaningfully represent any complex language semantics (not that it should or even could)

      • packetlost 16 hours ago

        It's a near universal de facto FFI if we're being pedantic. My whole point was the reason that's the case is it has essentially no runtime expectations at all, which is a requirement for a truly universal FFI.

    • WorldMaker a day ago

      Instead of inventing some new delimited formats, we also already have nearly ubiquitous interchange formats like JSON. If you wanted to reduce the in memory footprint versus plaintext encoding the JSON there are good options like BSON and CBOR.

      • packetlost a day ago

        JSON isn't streamable. Neither is CBOR for that matter, though it's not quite as bad.

  • MrDrMcCoy 15 hours ago

    > One can dream of a future where perhaps it will be possible to write a function, library, or program in any language one chooses and call it from any other shell or language without swig or ceremony.

    That's a neat idea, and sounds like something that could be built on graalvm.

  • hnlmorg 2 days ago

    There are shells out there that sit between PowerShell / Nu and the old guards like Bash / Zsh.

    Ones that support data structures out-of-the-box (like any et al) but also work perfectly fine with existing UNIX commands (like Bash).

  • solidsnack9000 a day ago

    Maybe tabular data is a credible intermediate step. Many shell tools already export data in a tabular format.

  • actionfromafar 2 days ago

    To me the silly hang-up for PowerShell is none of that, but the strange syntax. I'd taken (even!) JavaScript-ish syntax over that.

mattmight 2 days ago

"Think of it as an unholy combination of bash and Lisp" reminded me of Scheme Shell: https://scsh.net/

My Ph.D. advisor Olin Shivers created this. It's more pulling bash into Lisp than Lisp into bash.

It doesn't seem to be maintained anymore, but some of its ideas live on in Racket.

tempodox 2 days ago

Nice, it even has Muad'Dib (the desert mouse from the “Dune” movies) as its mascot. The question “but does it have Muad'Dib?!” was the first thing I thought of when I saw the title.

  • beardedwizard 2 days ago

    More white rat than desert mouse, I was disappointed. The mouse is also featured in the source material - the books :)

    • globular-toast a day ago

      Also the one in the film looked more like a jerboa.

      • herodoturtle a day ago

        Don’t know what a jerboa is but I quite liked the depiction in the film.

        In particular the attention to detail, when they showed a bead of sweat running down its optimally shaped ear, whereupon it was pawed into its mouth.

        I loved that little scene so much.

        • lagniappe a day ago

          Jerboas ride on your shoulder to alert you of an incoming storm.

CMCDragonkai a day ago

It kind of sucks that the default shell language is so clunky on Linux O/Ses. Bash marginally better than POSIX sh, and Zsh marginally better.

  • pasc1878 21 hours ago

    Even worse is that POSIX forces this to be used.

    Using a non POSIX shell is much easier to write (e.g. fish xonsh - and possibly Powershell or rash but I have not used the last two)

    sh and derivatives are difficult for me to follow the syntax is impenetrateable - and I was a professional APL programmer.

ulbu 18 hours ago

In the domain and history that shells inhabit, the design should not prioritize arithmetic operations over indirection. '>>' is a biiig footgun. Elevation of a symbol to non-destructive operation into a destructive one is obviously a wrong choice. I wonder if it was a deliberate decision.

edit: just leave '>>' as append and make '>>>' destructive instead.

mmastrac 2 days ago

I like the ideas behind Powershell, but the DX has always felt ugly and clunky compared to standard shell. Unix/Posix are full of great tools, but they are all extremely painful for newbies and take years to master. There's got to be a middle ground where we can have the power and approachability of SQL with the beautiful elegance of standard Unix pipes.

Dune seems to take a step in that direction which is great.

noisy_boy a day ago

bash has its own issues but my main gripe is handling of arrays and dictionaries - the syntax is so awkward and hard to remember that I inevitably have to have a reference open in another window. I wish they added some syntactic sugar to make that more ergonomic while retaining backwards compatibility.

  • imp0cat 21 hours ago

    This is where Copilot (or other similar tool) help a lot!

solidsnack9000 a day ago

The author writes:

With my last shell, Atom, I had accomplished some of the coziness that bash was missing, but I also introduced a lot of really fatal flaws in the syntax and the type system.

I would be interested to read more about this -- what the author learned from that experiment.

ssivark 2 days ago

The advertisement promises a combination of bash and lisp. So it makes me wonder -- why couldn't we just use lisp?

What are the affordances needed for a "scripting" language (or for interactive use) vis-a-vis more "production use? Is it just about having minimal boilerplate, and a large corpus of ready-to-use functions in the namespace?

  • jerf 2 days ago

    "Is it just about having minimal boilerplate"

    That's a lot of it, but I think people don't realize how every keystroke counts with shell.

    There's only a handful of languages where the "apply function" operator is space. Shell is one of them. (Haskell & Forth are the other two I know off the top of my head, possibly Factor (concatenative in general tends this way).) Most new shells that are successful copy this. I don't think that's a coincidence. Lisp's abundance of parens is something that people will have trouble with, even Lisp programmers, because this is not the usual whining about a foreign language paradigm and not being used to reading parens... this is literally about the effort required to physically enter them with a keyboard.

    • tom_ a day ago
      • jerf 16 hours ago

        Yeah, it really is like that.

        I've tried a couple of times to switch to things like IPython as my shell. And what nukes it every time is that while it may be better at the complicated commands I run maybe 1% of the time if you actually look at an unmodified history,

            cd("some dir")
        
        is just too much insanely harder than

            cd som TAB ENTER
        
        and I'm just smashing that TAB in a tight interactive loop to figure out how little I need to type.

        It doesn't look like it when you're doing it once, but when you're doing it dozens of times a minute it adds up fast.

  • solidsnack9000 a day ago

    In addition to "space is function application" another important shell affordance seems to be "words are just words" -- you don't have to quote simple strings like `README.md`. If you want a single string with more than one word (where there is a space in between), that is in conflict with "space is function application", so then you have to put it in quotes.

  • Kinrany 2 days ago

    Process composition is one thing that shell languages do better than traditional programming languages

    • hnlmorg 2 days ago

      There’s plenty of LISP packages that support process composition. Also LISPs syntax better suits write once type environments like REPL shells than your average C-derived syntax.

      • Kinrany a day ago

        Any examples? Searching for this is hard.

        What would `foo | bar | baz` look like in a lisp?

        • christophilus 20 hours ago

          Something like Clojure’s threading macro, probably:

          (-> (foo) (bar) (baz))

  • jimbokun 2 days ago

    Maybe the ultimate would be default to bash but if you start a command with a prefix everything following is parsed and evaluated as an s-expression.

    • toolslive a day ago

      ipython is the complete opposite: python but enhanced with bash. For example:

          x = !ls   # capture the output of `ls` into x
          x[0]      # the first filename  
          ...
delichon a day ago

The shell avatar is a rodent but not a desert mouse, not a muad'dib. It's "a shell by the beach", not inspired by any intellectual property you might be thinking of. Yet memorable. Well played.

esafak 2 days ago

Looks like it needs some contributors; no releases in almost a year.

kseistrup 2 days ago

Hm, even if I download the sample .dune-prelude, dunesh keeps asking me if this is my first time.

Also, can I make it use a 24h clock and non-US date formatting?