Shell – How to run a windows executable in linux shell script

executableshell-scriptwindows

I have an executable program (no source code, just the compiled executable) that was made in windows (.exe extension). It doesn't use any graphics… it simply reads and writes files. I want to be able to run it in a linux shell script so that I don't have to switch operating systems to get my output. Is there a way to use or convert the executable for linux operating systems?

Best Answer

Wine works even for Windows CLI apps.

Related Question