Skip to content

Instantly share code, notes, and snippets.

@afrontend
Last active August 7, 2018 13:01
Show Gist options
  • Save afrontend/d350fe2254beaa67859418bcb1240282 to your computer and use it in GitHub Desktop.
Save afrontend/d350fe2254beaa67859418bcb1240282 to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
const cli = require('cli');
let line_number = 0, re;
cli.withInput(function (line, newline, eof) {
line_number = line_number + 1;
re = new RegExp(process.argv[2]);
if (!eof) {
if(line.match(re)) {
this.output(line.replace(/\)\s*;\s*$/, ', "'+line_number+'");'));
} else {
this.output(line);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment