How to run .exe executable from linux command line?

I have one abc.exe executable in windows. I can run this application using the DOS promt command and provide it with some runtime variable.

I want to do the same in a linux system from a terminal.

How can i do this?

+4
source share
2 answers

Windows EXE files usually cannot work on Linux. You may be able to use wineone that emulates MS Windows:

wine abc.exe

What do you mean by a run-time variable? Command line argument or environment variable?

+12
source

chorobas , Linux .exe , , , , vm vm .

+2

Source: https://habr.com/ru/post/1546304/


All Articles