KatBox
Install Tools GithubHow to install/update
To install, run the command
bash <(curl https://raw.githubusercontent.com/KittKat7/katbox/main/installer.sh)
To install, update, or uninstall, after already installed, katbox modify
will bring up the
install/uninstall menu to walk through install/update/uninstall.
System Requirments
System: Linux (may work on MacOS, features may work on Windows with some tweaks)
Shell: Tested on Bash and ZSH (other shells may work)
Python: At least version 3
Tools
Pass Generator
Generate random passwords!
Command: katbox passgen
Example output: Oe!qwyk!w!zZ0UYN70o_Mw8y
If no param is provided, a password will be generated with the default length (24). If you want to
generate with a specific length, use that length as the param.
Prime Finder
Find x prime numbers!
Command: katbox primefind
Example output:
[1, 2, 3, 5, 7, 11, 13, 17, 19, 23]
The first param is the number of primes to find, with a default of 10.
Convert Base
Convert a number in one base to another.
Command: katbox convertbase 13-2
Example output:
13_10 >> _2 = 1101
The param structor is "NUMBER[BASE (defaults to 10)]-NEWBASE". NUMBER is required, BASE is optional,
NEWBASE is required. For example, "13-2" converts 13 in
base 10 to base 2, "1010_2-10" converts 1010 in base 2 to base 10.