How to execute a bat file from cygwin bash?
Here is:
Assuming your bat file name is “test.bat”
1. Open Cygwin terminal window
2. Change the path to your bat file folder
3. Change the bat file access permissions to Execute by
chmod +x test.bat
4. Execute the bat file at
./test.bat
Leave a Reply