Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

exec js

try {
        exec(CMD, /*{ windowsHide: true },*/ (error: Error, stdout: any, stderr: any) => {
            if (error) {
                console.log(`error with cmd : ${error}`)
            }
            if (stdout) {
                console.log(`out of the command : ${stdout}`)
            }
            if (stderr) {
                console.log(`error with cmd : ${stderr}`)
                return;
            }
        });
    } catch {
        console.log('error with cmd: cmd dosent launch')
    }
 
PREVIOUS NEXT
Tagged: #exec #js
ADD COMMENT
Topic
Name
9+6 =