05-makeMobi.js 272 B

12345
  1. const shell = require('shelljs');
  2. const utils = require('./utils/base');
  3. shell.exec(`zip -p -r ${utils.name}.epub book`);
  4. shell.exec(`/Users/honghaitao/Applications/KindleGen_Mac_i386_v2_9/kindlegen -c1 ${utils.name}.epub -locale zh`);
  5. shell.exec(`rm ${utils.name}.epub`);