vlt-li v1.0.4
vlt-li
vlt-li is a Node.js CLI package that allows you to save and execute commands globally from anywhere on your system. With vlt-li, you can save frequently used commands under unique names, making them easy to remember and execute with just a few keystrokes.
Installation
To use vlt-li, you'll need to have Node.js installed on your system. Once you have Node.js installed, you can use npm to install vlt-li globally:
npm install -g vlt-liUsage
To save a command, use the set command with the -i option for the input command name and the -o option for the output command to be executed when the input command is called: vlt set [commandName] [command]
vlt set "adb-rev" "adb reverse tcp:8081 tcp:8081"To execute a saved command, simply use the command name as the first argument to the script followed by any additional arguments: vlt [command] [args...]
> vlt adb-rev
# output
adb reverse tcp:8081 tcp:8081Use the config command to view a list of all saved commands:
> vlt config
Saved commands:
{ adb-rev: 'adb reverse tcp:8081 tcp:8081' }License
vlt-li is released under the MIT License.