lsh-framework 0.5.9 → 0.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +11 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -64,8 +64,17 @@ program
|
|
|
64
64
|
await startInteractiveShell(options);
|
|
65
65
|
}
|
|
66
66
|
else {
|
|
67
|
-
// No arguments - show
|
|
68
|
-
|
|
67
|
+
// No arguments - show brief usage message
|
|
68
|
+
console.log('LSH - A modern shell with ZSH features and superior job management');
|
|
69
|
+
console.log('');
|
|
70
|
+
console.log('Usage: lsh [options] [command]');
|
|
71
|
+
console.log('');
|
|
72
|
+
console.log('Quick Start:');
|
|
73
|
+
console.log(' lsh -i Start interactive shell');
|
|
74
|
+
console.log(' lsh --help Show detailed help');
|
|
75
|
+
console.log(' lsh self update Update to latest version');
|
|
76
|
+
console.log('');
|
|
77
|
+
console.log('For full documentation, run: lsh help');
|
|
69
78
|
}
|
|
70
79
|
}
|
|
71
80
|
catch (error) {
|