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 : 3.14.152.212
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 /
browser-sync /
dist /
cli /
Delete
Unzip
Name
Size
Permission
Date
Action
transforms
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
cli-info.js
1.52
KB
-rw-rw-r--
2022-08-30 11:49
cli-info.js.map
1.53
KB
-rw-rw-r--
2022-08-30 11:49
cli-options.js
4.13
KB
-rw-rw-r--
2022-08-30 11:49
cli-options.js.map
2.5
KB
-rw-rw-r--
2022-08-30 11:49
command.init.js
302
B
-rw-rw-r--
2022-08-30 11:49
command.init.js.map
326
B
-rw-rw-r--
2022-08-30 11:49
command.recipe.js
1.89
KB
-rw-rw-r--
2022-08-30 11:49
command.recipe.js.map
1.95
KB
-rw-rw-r--
2022-08-30 11:49
command.reload.js
1.09
KB
-rw-rw-r--
2022-08-30 11:49
command.reload.js.map
1.23
KB
-rw-rw-r--
2022-08-30 11:49
command.start.js
2.65
KB
-rw-rw-r--
2022-08-30 11:49
command.start.js.map
2.29
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var config = require("../config"); var logger = require("../logger").logger; var fs = require("fs"); var _ = require("../lodash.custom"); var path = require("path"); var info = { /** * Version info * @param {Object} pjson * @returns {String} */ getVersion: function (pjson) { console.log(pjson.version); return pjson.version; }, /** * Retrieve the config file * @returns {*} * @private * @param filePath */ getConfigFile: function (filePath) { return require(path.resolve(filePath)); }, /** * Generate an example Config file. */ makeConfig: function (cwd, cb) { var opts = require(path.join(__dirname, "..", config.configFile)); var userOpts = {}; var ignore = ["excludedFileTypes", "injectFileTypes", "snippetOptions"]; Object.keys(opts).forEach(function (key) { if (!_.includes(ignore, key)) { userOpts[key] = opts[key]; } }); var file = fs.readFileSync(config.template, "utf8"); file = file.replace("//OPTS", JSON.stringify(userOpts, null, 4)); fs.writeFile(path.resolve(cwd, config.userFile), file, function () { logger.info("Config file created {magenta:%s}", config.userFile); logger.info("To use it, in the same directory run: " + "{cyan:browser-sync start --config bs-config.js}"); cb(); }); } }; module.exports = info; //# sourceMappingURL=cli-info.js.map