Follow these steps to build and use these C++ tools.
- CMake
- C++ 17 or higher
- (Optional) VSCode (or any other text editor, like Notepad++, Vim, or nano) to look through the files
If you want the precompiled binaries (executable files), go here.
Run:
git clone https://github.com/T-Perm777/CppSuite.git
cd CppSuite
mkdir build && cd build
cmake ..
cmake --build .
The executables will be found in build. Copy them wherever you like.
- Add the file path (ie, C:\Tools\OSInfo) to your system's PATH.
- For
OSInfo
, just type in the name of your compiled exe to run it. I haven't added any flags [yet!] - For RandomPassGen (also called PassGen), run the command, and follow the prompts on screen. To generate a password with default setting, run it with the -f flag. to output to a file, use the -o flag, followed by the file name (either something like password.txt or C:\Passwords\password.txt).
If you have ideas for new features or tools, submit a pull request! Learn how here, and look here on how to create one.
- Check the LICENSE file for the full licensing and permissions.
- Add extra functionality to
osinfo
- Make
osinfo
cross-platform for Linux - Scientific calculator
- Likely split this repo into multiple, with this being the website and directory for others.