<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
var Module = require('module') | |
Module.prototype.require = function (orig) { return function (id) { | |
console.trace(this, id) | |
return orig.apply(this, arguments) | |
}}(Module.prototype.require) | |
require('./b.js') |
find . -name "*.java" | while read line; do expand -t 2 $line > $line.new; mv $line.new $line; done |