0

The .bat file has this context "start client.exe ur;name=test;ip=79.114.123.26;port=8888" Can anyone tell me the instuctions how to run it, thanks in advance

don.joey
  • 29,392
Tanel Tinask
  • 9
  • 1
  • 2

1 Answers1

0

You can't run .bat files, and also .exe files directly on linux. You can install wine program to use win applications. Even if you run .bat file, the .bat file will not be able to run client.exe program.

wine installation:

sudo apt-get install wine
wine winappname

The best way is writing a new bash script for linux.

ubuntu_tr
  • 665