Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.227.140.134
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
panini /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
panini.js
1.26
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
#!/usr/bin/env node var nopt = require('nopt'); var pkg = require('../package.json'); var panini = require('../index'); var vfs = require('vinyl-fs'); var path = require('path'); // Options that can be passed to commands var options = { "root": String, "layouts": String, "partials": String, "data": String, "helpers": String, "output": String, "version": String } // Shorthands for the above commands var shorthands = { "r": "--root", "l": "--layouts", "p": "--partials", "d": "--data", "h": "--helpers", "o": "--output", "v": "--version" } var parsed = nopt(options, shorthands); // cmd.args contains basic commands like "new" and "help" // cmd.opts contains options, like --libsass and --version var cmd = { args: parsed.argv.remain, opts: parsed } // No other arguments given if (typeof cmd.args[0] === 'undefined') { // If -v or --version was passed, show the version of the CLI if (typeof cmd.opts.version !== 'undefined') { process.stdout.write("Panini version " + require('../package.json').version + '\n'); } // Otherwise, just show the help screen else { panini.help(); } } // Arguments given else { vfs.src(cmd.args). pipe(panini(cmd.opts)). pipe(vfs.dest(cmd.opts.output)); }