diff --git a/src/index.ts b/src/index.ts index 69418da..4ddd6e6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -31,12 +31,18 @@ const enqueue = (fn: Function) => (cmd: any) => { } program.storeOptionsAsProperties() -program.name('autorestic').version(VERSION) +program.name('autorestic').description('Easy Restic CLI Utility').version(VERSION) program.option('-c, --config ', 'Config file').option('-v, --verbose', 'Verbosity', false) program.command('info').action(enqueue(info)) +program.on('--help', () => { + console.log('') + console.log(`${'Docs:'.yellow}\t\thttps://autorestic.vercel.app`) + console.log(`${'Examples:'.yellow}\thttps://autorestic.vercel.app/examples`) +}) + program .command('check') .description('Checks and initializes backend as needed')