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
Asked
Active
Viewed 4,707 times
0
1 Answers
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
.bat
files are used on Windows and also the commandstart client.exe ...
shows that the file is intended to be used on Windows. – Uwe Plonus Jul 17 '13 at 09:32