HEX
Server: LiteSpeed
System: Linux osault1.hostarmada.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: tucom (1048)
PHP: 8.4.24
Disabled: NONE
Upload Files
File: //proc/self/root/usr/bin/ghost
#!/usr/bin/env node
'use strict';

// provide a title to the process
process.title = 'ghost';

const argv = process.argv.slice(2);

if (argv.length === 0) {
    console.error('No command specified. Run `ghost help` for usage');
    process.exit(1);
}

const yargs = require('yargs');
const bootstrap = require('../lib/bootstrap');
bootstrap.run(argv, yargs);