Mukundhan Sampath
03/07/2025, 10:38 AMdocker
..
your suggestions are invaluable, TIAClemens Jütte
03/07/2025, 11:29 AMmake
might be a platform neutral answer. You could even quickly roll a (Go works fine) CLI that is cross-platform compiled.Mukundhan Sampath
03/07/2025, 11:34 AMClemens Jütte
03/07/2025, 12:33 PMYou can usually share one script between Linux and MacOS - if you need to have GNU compatibility for some commands on MacOS, just homebrew the dependencies in there. You can try to run the same script on WSL (Windows Subsystem for Linux) but if you’re doing things that are OS specific you might be out of luck.
Clemens Jütte
03/07/2025, 12:35 PMMukundhan Sampath
03/07/2025, 12:36 PMsed
to replace few texts, and run npm
commands to install a dependency based on the version stable / betaClemens Jütte
03/07/2025, 12:41 PM*nix
and a powershell
version of that script and be done with it.
If you want to be really OS agnostic and do things for it anyway, why not use a node.js
based script in the first place?Mukundhan Sampath
03/07/2025, 12:43 PMMukundhan Sampath
03/07/2025, 12:43 PMBen
03/07/2025, 1:31 PMMukundhan Sampath
03/07/2025, 2:27 PMChanda
03/07/2025, 7:32 PMScott Corzine
03/08/2025, 7:40 AMMukundhan Sampath
03/08/2025, 9:37 AMShashwat Pathak
03/08/2025, 10:57 AMScott Corzine
03/08/2025, 5:42 PMpython
version (on the client) can run on most of the *nix like systems (Linux/MacOS/Unix).
Windows has an OS architecture and interface that's just too different to throw in the mix effectively. So the Windows client side code is written in powershell
.Mukundhan Sampath
03/08/2025, 5:52 PMClemens Jütte
03/09/2025, 7:54 PMScott Rosenberg
03/11/2025, 5:48 PMMukundhan Sampath
03/12/2025, 8:42 PM