Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/dceprojects.corals.io/node_modules/.bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/dceprojects.corals.io/node_modules/.bin/concat
#!/usr/bin/env node
'use strict';
const app = require('commander');
const cfg = require('../package.json');
const concat = require('../index');
const path = require('path');
app.version(cfg.version)
    .option('-o, --output <file>', 'output file')
    .description(cfg.description);
app.parse(process.argv);
let err = (err) => console.log(err);
let output = (o) => {
    if (!app.output) {
        console.log(o);
    }
};
if (app.args.length) {
    concat(app.args, app.output).then(output).catch(err);
}
else
    throw new Error('no files specified');

Spamworldpro Mini