A command line tool that allows you to save, list, and run the frequently used CLI commands. It's a dotnet tool and can be accessed via jonturk
CLI command after you follow the installation instructions below.
Love the JonTurk CLI? Then, please give a star(⭐)! If you find any bug or want to have additional features, don't hesitate to create an issue. Thanks in advance!
You can install the CLI tool by running the following command:
dotnet tool install --global JonTurkCli
You can execute the jonturk --help
command in the terminal to list all commands with their possible options:
jonturk --help
Here is an example usage of list
and run
commands:
The following commands are currently available:
Saves the related command with the name and creates a PowerShell script for the command (under the %USERPROFILE%/.jonturk/script path):
jonturk save -n "cache-clear" -c "dotnet nuget locals all --clear"
- -n | --name (Name of the command)
- -c | --command (Command (with arguments))
Lists the saved commands in a table view:
jonturk list
Runs the specified command:
jonturk run -n "cache-clear"
- -n | --name (Name of the command)
- -p | --path (The working directory where the command will be run.)
Removes the specified command from the saved commands:
jonturk remove -n "cache-clear"
- -n | --name (Name of the command)
See the contribution guide if you want to contribute to this project.