I am new to Linux. I am currently trying to write a command line which should execute a *.exe inside a folder abc.

I have tried

% cd abc info.exe

But the error says no such file or directory .

What suggestions have you received?

Best Answer


try.

abc/info.exe

but if it's really a Windows program, you will need to install "wine", then do.

wine abc/info.exe

but only some Windows programs will work under wine.