forked from yargs/yargs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathline_count_wrap.mjs
More file actions
30 lines (27 loc) · 772 Bytes
/
Copy pathline_count_wrap.mjs
File metadata and controls
30 lines (27 loc) · 772 Bytes
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
#!/usr/bin/env node
import yargs from 'yargs';
import fs from 'node:fs';
const argv = yargs(process.argv.slice(2))
.usage('Count the lines in a file.\nUsage: $0')
.wrap(80)
.demand('f')
.alias('f', ['file', 'filename'])
.describe(
'f',
"Load a file. It's pretty important." +
" Required even. So you'd better specify it."
)
.alias('b', 'base')
.describe('b', 'Numeric base to display the number of lines in')
.default('b', 10)
.describe('x', 'Super-secret optional parameter which is secret')
.default('x', '')
.parse();
const s = fs.createReadStream(argv.file);
let lines = 0;
s.on('data', function (buf) {
lines += buf.toString().match(/\n/g).length;
});
s.on('end', function () {
console.log(lines.toString(argv.base));
});