-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodepage.njs
35 lines (31 loc) · 1.26 KB
/
codepage.njs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env node
/* js-codepage (C) 2014 SheetJS -- http://sheetjs.com */
/* vim: set ts=2 ft=javascript: */
var codepage = require('../');
var fs = require('fs'), program = require('commander');
program
.version('1.0.0')
.usage('[options] <file>')
.option('-f, --from-code <code>', 'codepage of input (default 65001 utf8)')
.option('-t, --to-code <code>', 'codepage of output (default 65001 utf8)')
.option('-o, --output <file>', 'output file (<file>.<to> if specified)')
.option('-l, --list', 'List supported codepages');
program.on('--help', function() {
console.log(' Codepage descriptions can be found in the README');
console.log(' http://oss.sheetjs.com/js-codepage/README.md');
console.log(' Support email: [email protected]');
});
program.parse(process.argv);
if(!fs.existsSync(program.args[0])) {
console.error('codepage: must specify a filename');
process.exit(13);
}
var fr = program.fromCode || 65001;
var to = program.toCode || 65001;
var f = program.args[0];
var o = program.output;
var text = fs.readFileSync(f);
var dec = codepage.utils.decode(fr, text);
if(o) fs.writeFileSync(o, codepage.utils.encode(to, dec));
else if(!program.toCode) console.log(dec.toString('utf8'));
else fs.writeFileSync(f + "." + to, codepage.utils.encode(to, dec));