2016-01-25 58 views
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它的工作原理。

回答

0
notify-send -t 5000 "Hello Karl" 

這是我餵它的命令錯誤。