Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
alt-nodejs6
/
root
/
lib
/
node_modules
/
npm
/
node_modules
/
rimraf
/
File Content:
bin.js
#!/opt/alt/alt-nodejs6/root/usr/bin/node var rimraf = require('./') var help = false var dashdash = false var args = process.argv.slice(2).filter(function(arg) { if (dashdash) return !!arg else if (arg === '--') dashdash = true else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/)) help = true else return !!arg }); if (help || args.length === 0) { // If they didn't ask for help, then this is not a "success" var log = help ? console.log : console.error log('Usage: rimraf <path> [<path> ...]') log('') log(' Deletes all files and folders at "path" recursively.') log('') log('Options:') log('') log(' -h, --help Display this usage info') process.exit(help ? 0 : 1) } else go(0) function go (n) { if (n >= args.length) return rimraf(args[n], function (er) { if (er) throw er go(n+1) }) }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
LICENSE
765 bytes
0644
README.md
3600 bytes
0644
bin.js
859 bytes
0755
package.json
2376 bytes
0644
rimraf.js
8341 bytes
0644
N4ST4R_ID | Naxtarrr