I have a couple of windows apps made with solar2d where I need to execute numerous commands, run executables with command line arguments and so on.
I also need to capture the output of some of these commands
The only way to currently do this with solar2d seems to be os.execute which doesn’t capture output and it invariably flashes a black terminal window above the app— all things that ruin the overall user experience. To capture output I’m having to write it to temporary files and then read it from there which is very unnecessary
Has anyone had luck with integrating os.popen in solar2d or can otherwise provide any relevant guidance?