Skip to content

Instantly share code, notes, and snippets.

@dimotsai
Created September 7, 2016 17:04
Show Gist options
  • Select an option

  • Save dimotsai/9763e222d53225a09e5dbcf0c59bbda8 to your computer and use it in GitHub Desktop.

Select an option

Save dimotsai/9763e222d53225a09e5dbcf0c59bbda8 to your computer and use it in GitHub Desktop.
const fs = require('fs');
let content = fs.readFileSync(process.argv[2], 'utf-8');
let lines = content.split('\n');
lines.pop();
lines.forEach(function(line) {
let account = line.split(':');
account.unshift('ptc');
console.log(account.join(','));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment