I am not sure how to run aps.bat command within a shell script on Windows 10.
I have tried a couple of different approaches, without success I do not have more details.
Please have a look at the code below:
#!/bin/bash
output = aps.bat build $PWD;
# do some work...
echo "$output";
Basically, I need aps.bat command to be executed and to store the output to the variable.