CLI-Toolbox is a collection of packages for smart and fast operations via the command-line interface.
Call the program in the CLI to show an help page showing the Toolbox available packages with their basic functions and calls.
- Basic String concatenation python-like
- Basics Math operations with integers and floats
- Generate an ASCII Art from a string with custom font and style
You need the Java JDK / JRE installed to run this.
Save the jar file located in ~\CLI-Toolbox\CLI-Toolbox\out\artifacts\CLI_Toolbox_jar where you prefer.
You can call the program via CLI by calling: "java -jar path/to/jar/CLI-Toolbox.jar {arguments}"
To call the program freely from the CMD, create a batch file (commandname.cmd) and put it in a folder in your PATH (the PATH Environment Variable).
Put this in the commandname.cmd file:
@echo off
java -jar \path\to\jar\CLI-Toolbox.jar %*
\path\to\jar is the path of the folder containing the CLI-Toolbox.jar file saved earlier.
You can now call "commandname" from the CMD.
To call the program freely from the shell, create a script (commandname) and put it in a folder in your PATH (/usr/local/bin for example).
Put this in the commandname script:
java -jar path/to/jar/CLI-Toolbox.jar "$@"
path/to/jar/ is the path of the folder containing the CLI-Toolbox.jar file saved earlier.
Now give executable privileges to the script via:
chmod a+x /path/to/commandname
path/to/commandname is the path of the script created earlier.
You can now call "commandname" from the shell.