Skip to content

Instantly share code, notes, and snippets.

@timoxley
Created June 15, 2015 03:26
Show Gist options
  • Select an option

  • Save timoxley/e1720e446b40c38eb2be to your computer and use it in GitHub Desktop.

Select an option

Save timoxley/e1720e446b40c38eb2be to your computer and use it in GitHub Desktop.
// cat.js
// cat a.js b.js | node cat.js
var vm = require('vm')
var a = ''
process.stdin.on('data', function(b) {
a += b.toString()
})
process.stdin.on('end', function() {
vm.runInThisContext(a)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment