使用notify-send和exec时出错

时间:2016-01-25 12:19:59

标签: node.js

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;
});

我收到错误:

Error: Command failed: /bin/sh -c notify-send -t 5000 -i "Hello Karl"
No summary specified.

如果该命令是例如node -v则可行。

1 个答案:

答案 0 :(得分:0)

notify-send -t 5000 "Hello Karl"

我正在喂它的命令是错误的。