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,742 times
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