Skip to content

Instantly share code, notes, and snippets.

@wlaurance
Created January 13, 2014 21:04
Show Gist options
  • Select an option

  • Save wlaurance/8408130 to your computer and use it in GitHub Desktop.

Select an option

Save wlaurance/8408130 to your computer and use it in GitHub Desktop.
Split java classpaths into single lines
process.stdin.on('data', function(d) {
var separate = d.toString().split(':');
console.log(separate.join('\n'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment