Skip to content Skip to sidebar Skip to footer

Using Shelljs On Windows And Storing The Output Of A Process

I am trying to use shelljs (https://github.com/arturadib/shelljs) for a project I am working on, it works like a charm on Unix based systems but once I try to use it on Windows, I

Solution 1:

Try to do this:

child.on("data",function(data){...}

Post a Comment for "Using Shelljs On Windows And Storing The Output Of A Process"