Python flawfinder
module is working in bash but not working in Windows command commandline. Here are the steps I followed:
Python installation path - C/Users/xyz/AppData/Local/Programs/Python/Python37-32/python
pip install flawfinder
When I type flawfinder
in commandline, it gives below error:
flawfinder is not recognized as an internal or external command, operable program or batch file.
For Windows the recommended way is to install Cygwin and install flawfinder on top of it. This is the usual way. From Docs,
Flawfinder works on Unix-like systems (it’s been tested on GNU/Linux), and on Windows by using Cygwin.
But it can also be made to work with python by running it as a script.
Run it with python as usual in your cmd prompt like,
python flawfinder [options] [source_code_file]+