I am trying to call a bash script from a Typescript. Tried the following but didn't work, any suggestion?
var script = ##path to the .sh script##
console.log(script)
const { exec } = require("child_process")
exec (script)
[UPDATE]
IT seems like it's not calling the .sh script still, not echoing 'works'



