tape 171 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #!/usr/bin/env node var path = require('path'); process.argv.slice(2).forEach(function(file) { require(path.resolve(process.cwd(), file)); }); // vim: ft=javascript