why?

Because bash feels clunky to write and work with for anything non-trivial, especially compared to other scripting languages.

Why not another scripting language (no compile necessary)?

Because bash and sh are installed nearly everywhere. Any other scripting language means the user is required to have that installed, and that is far less likely to be the case.

If I could write my scripts in a nice syntax, but be sure my users will be able to use it effortlessly by distributing to them compiled versions, then that would make both of our lives easier!

Thoughts? Are there any languges that do this?

  • neil@programming.dev
    ·
    edit-2
    10 months ago

    python is usually the next step up in admin land

    python is a pretty standard install on linux systems since so many things like you're talking about use it

      • wick@lemm.ee
        ·
        10 months ago

        Huh, why doesn't python just ship this? Managing python installs is annoying as hell.

        • crunchpaste@lemmy.dbzer0.com
          ·
          10 months ago

          I would guess mostly because python interpretes are just about everywhere.

          Also the binaries compiled with nuitka end up being much bigger in size. A simple script of a few kb can and up in the hundreds of mb when you start compiling the dependencies, so it's not a perfect solution.

        • moonpiedumplings@programming.dev
          ·
          10 months ago

          This is about python packaging, like making/getting libraries/apps rather than compiling binaries, but it's pretty relevant here:

          https://chriswarrick.com/blog/2023/01/15/how-to-improve-python-packaging/

  • jeffhykin@lemm.ee
    ·
    edit-2
    10 months ago

    I write a lot of bootstrapping scripts, and I have a solution thats probably something you and others in this thread have never seen before. You can write a single script in a full/normal language, no compilation step, and it works on systems that only have bash/sh. It doesn't compile to bash, or at least not in the way you might think/expect it to, but it should do what you want.

    (guillotine because it's a universal executor) https://github.com/jeff-hykin/deno-guillotine

    It definitely requires some explanation, so I'll try to give that here;

    As another person said, shells are not nearly as standardized as we need them to be. Mac uses zsh, Ubuntu uses dash, neither store a posix bash exectuable in the same place, and both have ls and grep differences that are big enough to crash common scripts. Even if you're super strict on POSIX compliance, common things will still break.

    However, you can make a single script that does it all without making any problematic assumptions. I hate JS as much as the next guy, but its possible to write a single text file that is valid bash/dash/zsh/powershell and valid JavaScript all at the same time. It sounds impossible, but there is enough overlapping syntax that actually any javascript program can be converted into a valid bash script without mangling the JS code. It might be possible to do for python as well.

    From there, we can use a small amount of bash/powershell code at the top to ensure that the JS runtime you want is installed (auto install if missing). Then the script executes itself again using the JS runtime. It wasn't easy but I a made a library that explains how it's possible and gives a cli tool for doing it with the Deno runtime. Which is the link I posted above.

    After that, I just recreated tools that feel like bash, but this time the tools actually were cross platform. Ex:

    let argWithSpaces = "some thing"
    run`echo hello ${argWithSpaces}`
    

    I picked Deno because it auto installs libraries (imports directly from URL so users don't have to install anything)

    • aport@programming.dev
      ·
      10 months ago

      its possible to write a single text file that is valid bash/dash/zsh/powershell and valid JavaScript all at the same time. It sounds impossible, but there is enough overlapping syntax that actually any javascript program can be converted into a valid bash script without mangling the JS code.

      I'm both impressed and horrified

      • UlrikHD@programming.dev
        ·
        edit-2
        10 months ago

        It'd honestly the funniest thing I've read on this instance. Puts programmer humour to shame. Love it when developers finds the jankiest/unconventional way to solve problems.

      • jeffhykin@lemm.ee
        ·
        10 months ago

        Agreed hahaha. I thought I'd enjoy the day my code golf skills would be used to solve a legit problem but instead it just feels kinda gross 😆

        Honestly it's really dissapointing we don't just have an agreed-upon universal pre-installed language. And it's beyond ironic (more like the universe is laughing at us) that JS, the web language that gets used for every not-web-thing, is also the language with a syntax that allows it to become the effectively universal no-preinstall language.

    • onlinepersona@programming.dev
      ·
      10 months ago

      Bro, make a video and put it up on peertube please then link it in the README. I need to see this shit in action. It sounds awesome, but it's 10am and my eyes are just opening, so reading through everything and testing it isn't happening on my phone rn.

      • jeffhykin@lemm.ee
        ·
        10 months ago

        Actually I've been thinking of starting a Youtube/Peertube channel for a while so this will be a good place for me to start!

        I'll come back and post a response once I've uploaded it! It'll probably take a week or two.

    • snowe@programming.devM
      ·
      10 months ago

      Not only do you solve the problem op is trying to solve, but you also made the most horrifying and hilariously ingenious thing at the same time.

    • Mikina@programming.dev
      ·
      10 months ago

      Do I understand it right that what the tool does is include install scripts in all of the other languages, that simply download a portable Deno runtime and then run the rest of the file (which is the original Javascript code) as Javascript?

      So, you basically still have an install step, but it was just automated to work cross-platform though what's basically a polyglot install script. Meaning that this could probably be done with almost any other language, assuming it has a portable runtime - such as portable python and similar, is that correct?

      • jeffhykin@lemm.ee
        ·
        edit-2
        10 months ago

        Almost, but you bring up an important point about other language support.

        The code includes an install script for one language, and the second part about "any language" isn't quite right. There is an alternative way to get any-language support but the current approach requires a language to have a syntax that is compatible with bash/powershell. For example I abuse the hell out of multi-line strings and multi line comments in javascript to make it be interpreted as a do-nothing bash/powershell script.

        Python specifically might be possible because of its triple-quote strings, I haven't spent a long time trying but I did try a bit. However in general I don't think languages, like Haskell or Elixr, can work in this form because their syntax is incompatible.

        However, if you don't care about being able to edit the script, it should be possible to mangle code from other languages, like converting Haskell code to hex or some other escaped format (can't be binary because that's not valid bash/powershell). We'd need to handle unpacking that hex with shell/powershell, but it could be done. And in that case, yes it would work with any portable language. (And many are more portable than Deno, which struggles to run on old stuff like Ubuntu 16.04!)

        If you're interested in the hex unpacking let me know. I'm working on an offline bootstrapping script for deno, which involves embedding the runtime binaries of all OS's as hex into the script itself. Once I make it, it should be a lot easier to get this kind of thing working for other portable runtimes.

  • aport@programming.dev
    ·
    edit-2
    10 months ago

    Unfortunately shell script is not as portable as you might be anticipating. Different distro run different shells, with different settings, and also different tools. Think BSD grep vs GNU grep.

    • Scott@sh.itjust.works
      ·
      edit-2
      10 months ago

      I've seen multi distro scripts that are also able to bootstrap their own assets for each distro/architecture. Don't see why you wouldn't be able to check that considering /etc/os-release exists in pretty much every unix like environment.

      And having it run on a specific shell type could also be an option.

  • monobot@lemmy.ml
    ·
    10 months ago

    This thread reminds me of stackoverflow, most people are just convincing you in something else and it is obvious they have never been in your (and mine) situation.

    Just answer question if you have some idea, yes we know python exist, that's nice, but not an answer to this question.

    • neil@programming.dev
      ·
      10 months ago

      Knock off the childish fucking gatekeeping and go back to reddit. It's what the wider industry uses.

    • nxdefiant@startrek.website
      ·
      10 months ago

      Still requires the compiler though.

      I don't have a good answer, but I've embedded python in bash scripts before after having the bash script install python. Take that as you will.

  • sim642@lemm.ee
    cake
    ·
    10 months ago

    Why not another scripting language (no compile necessary)?

    But you're describing compiling that new language to bash...

    • Cyclohexane@lemmy.ml
      hexagon
      ·
      10 months ago

      Yes, I'm answering why I am not taking a completely other scripting language

      In other words, I am making the case for a compiled language by answering the question of why i am not considering a language that doesn't need it.

    • Cyclohexane@lemmy.ml
      hexagon
      ·
      10 months ago

      I'm familiar with NuShell and looks very nice. But unfortunately yeah, not what I'm looking for. It would require installation by user.

  • lysdexic@programming.dev
    ·
    10 months ago

    Why not another scripting language (no compile necessary)? (...) If I could write my scripts in a nice syntax, but be sure my users will be able to use it effortlessly by distributing to them compiled versions, then that would make both of our lives easier!

    Would it make sense to describe your idea as a typescript for bash or sh?

  • roo@lemmy.one
    ·
    10 months ago

    Doesn't powershell do this? I've been learning powershell, and they keep making a tech agnostic claim along these lines, but I haven't tested it on Linux yet.