Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/http-parser-js/../.bin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#!/usr/bin/env node 'use strict'; var copyfiles = require('./index'); var args = require('yargs'); var path = require('path'); args.alias('u', 'up') .describe('u', 'slice a path off the bottom of the paths') .number('u') if (path.basename(args.argv.$0) === 'copyup') { args.default('u', '1'); } args.alias('a', 'all') .describe('a', 'include files & directories begining with a dot (.)') .boolean('a') .alias('f','flat') .describe('f', 'flatten the output') .boolean('f') .alias('e', 'exclude') .describe('e', 'pattern or glob to exclude (may be passed multiple times)') .alias('E', 'error') .boolean('E') .describe('E', 'throw error if nothing is coppied') .alias('V', 'verbose') .boolean('V') .describe('V', 'print more information to console') .alias('s','soft') .boolean('s') .describe('s', 'do not overwrite destination files if they exist') .alias('F', 'follow') .boolean('F') .describe('F', 'follow symbolink links') .usage('$0 [options] inFile [more files ...] outDirectory') .help() .alias('v', 'version') .alias('h', 'help'); var argv = args.argv; if (argv.flat) { argv.up = true; } copyfiles(argv._, argv, function (err) { if (err) { console.error(err); process.exit(1); } else { process.exit(0); } });