qinglong/shell/notify.js
2021-03-20 11:25:51 +08:00

6 lines
160 B
JavaScript

const notify = require('/jd/scripts/sendNotify');
const title = process.argv[2];
const content = process.argv[3];
notify.sendNotify(`${title}`, `${content}`);