How to run a windows .bat script with wine from command line?

I don't use Wine, but the docs suggest this should work:

wine cmd.exe /C runme.bat

This solution worked for me.

First install wine :

sudo add-apt-repository ppa:ubuntu-wine/ppa -y && sudo apt-get update && sudo apt-get install wine

Then run from terminal :

wineconsole /path/to/bat_file/bat_file.bat

Sources:

https://askubuntu.com/questions/316025/how-to-install-and-configure-wine

https://askubuntu.com/questions/54266/executing-bat-file