Remix.run Logo
falcor84 a year ago

Have you tried NGS (https://ngs-lang.org)? I found its approach of giving you that power while remaining shell-focused to be very refreshing.

esafak a year ago | parent | next [-]

Somebody ought to package it for Linux OSs. I filed a ticket.

It has similar aims to https://www.nushell.sh/

ilyash a year ago | parent | prev | next [-]

Thanks for the kind words. I phrase it as "fully fledged programming language with domain specific facilities". Hope it makes sense.

pmarreck a year ago | parent | prev [-]

interesting.

I've actually already written a lot of the functionality I see here as bash (and other) functions, lol (things like log, filter, debug, retry, repeat, map, fetch (a URL, with retry)... etc.). (things like: enumeration functions, table pretty-printing, etc.)

ilyash a year ago | parent [-]

Hi. Author here.

> I've actually already written a lot of the functionality I see here as bash (and other) functions

That's exactly the reason these are part of stdlib. No reason for everybody to reimplemnt these with slight variations and copy it around.

pmarreck a year ago | parent [-]

Agreed, and good job with the tooling then!