I am trying to automate a command line program.
The exe uses one argument. For instance:
ztac.exe <mode> (where safe , normal or debug mode options).
To start in debug mode, simply enter this at the command line:
C:\source>ztac debug
How to write a Python program to run this ztac.exe file when using different modes as input?
source share