qinglong/shell/notify.js
nevinee d3cd3256ed
重构shell (#17)
* dev

Co-authored-by: anonymous <anonymous@gmail.com>
2021-04-11 20:28:53 +08:00

6 lines
162 B
JavaScript

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