%PDF- %PDF-
Direktori : /proc/self/root/usr/src/node-v0.10.4/deps/npm/node_modules/which/bin/ |
Current File : //proc/self/root/usr/src/node-v0.10.4/deps/npm/node_modules/which/bin/which |
#!/usr/bin/env node var which = require("../") if (process.argv.length < 3) { console.error("Usage: which <thing>") process.exit(1) } which(process.argv[2], function (er, thing) { if (er) { console.error(er.message) process.exit(er.errno || 127) } console.log(thing) })