0
var exec = require('child_process').exec;
exec('notify-send -t 5000 -i "Hello Karl"', function (err, stdout, stderr){
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (err !== null)
throw err;
});
,當我得到的錯誤:錯誤使用通知,發送和exec
Error: Command failed: /bin/sh -c notify-send -t 5000 -i "Hello Karl"
No summary specified.
如果命令例如node -v
它的工作原理。