How to run exe files in unix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to run exe files in unix
# 1  
Old 09-15-2012
How to run exe files in unix

Hi
I have a open source tool called table text comparator
Link to download that tool: http://www.nirsoft.net/utils/csv_file_comparison.html

I wish to run this tool in our unix servers. In windows O.S i just have to unzip and i can use this tool by running the .exe file. So i want to know how to run this tool in unix. i tried using ./TableTextCompare.exe. I am getting error as:
-bash: ./TableTextCompare.exe: cannot execute binary file.
I am in urgent need of this utility to run on unix machines, as i have my other tool depending on this tool to go live. i have tried contacting the maker of this tool but i have not got any response. This tool is open source.

Please help
Thanks in advance
Ganesh
# 2  
Old 09-15-2012
It's a windows application. Your options are limited. You can try Wine. If not, a virtual machine with a full installation of windows.

Regards,
Alister
# 3  
Old 09-15-2012
I wish to use this tool in my automation tool that i have prepared for my organization. But if i go by your solution will i be able to do all the stuff freely with no performance issues???

---------- Post updated at 10:42 PM ---------- Previous update was at 10:33 PM ----------

If that is the case then can you suggest me some other linux/unix based tools which i can use to compare two csv files. The main advantage of that tool was it use to show me comparison results irrespective of the order of the records in the csv files. i use to get accurate results even if the records were in the irregular order in the input files. can you suggest any other such tool which are unix based and have that advantage of comparing the records irrespective of the order in which they are present in the input files.

TIA
Ganesh
# 4  
Old 09-15-2012
Do you actually expect a useful response to that question? Only someone who is familiar with the hardware, software, and project requirements can answer a performance question.

Further, I just noticed the forum this is in. This is not a suitable location for your help request.

Regards,
Alister
# 5  
Old 09-15-2012
UNIX is not Windows. It cannot run Windows executables natively. Spotty compatibility can be achieved with WINE in a few environments, or somewhat better with full emulation. If you want to run Microsoft Windows executables in a Microsoft Windows-friendly environment, I recommend Microsoft Windows.
# 6  
Old 09-17-2012
If you need to control from Linux/Unix when to run that executable, you can install ssh on your Windows machine.
Basically the options to run in on Windows are:
1. Wine
2. Windows box
3. Windows virtual machine
4. Dual boot with Windows (but then you cannot control from same Linux/Unix)

I recommend option #3 - most flexible and allows most of functionality on the same time.
# 7  
Old 09-17-2012
Just a suggest but...
You can do the same thing quite easily with a unix script.
Look at man pages for sort (to get around the fact that your records may be out of order)
and then diff.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

can I run a exe which is at bin dir from my script.

Hello forum memebers. I have command which is exe of C- program from my script.i am writing a script which is under path /abc/xyz/test.sh. the script consist the command which is the exe of c-prog and the exe is present in the /abc/xyz/bin.if run the command from the /abc/xyz its running and if... (3 Replies)
Discussion started by: rajkumar_g
3 Replies

2. OS X (Apple)

Need to run UNIX exe on apple

Hello all, I am looking for some help with running a unix executable file using Apple Remote Desktop or Terminal with no user intervention. I am able to create a packate that can copy the file to the machine using ARD but I would like to copy the file and run the command with out the users... (1 Reply)
Discussion started by: dam1197
1 Replies

3. UNIX for Dummies Questions & Answers

compile .exe, run in unix.

Hi all, I am using putty to access my school unix servers. I have recently downloaded a source file of a software in .tar format. I change the code of the program and compile it in VS8 and build an .exe file. 1) I copy the .exe file to my school account but I could not make it work. How... (2 Replies)
Discussion started by: hkullana
2 Replies

4. Programming

I have C++ exe file( no source code) and need to run many large dataset under unix, b

I have C++ exe file( no source code) and need to run many large dataset under unix, but how to know the memeroy usage for one dataset?http://www.codeproject.com/script/Forums/Images/New.gif I think "top" is not good and if using the profiler, it seems no free download, any ideas? (1 Reply)
Discussion started by: Danielwang1986
1 Replies

5. UNIX and Linux Applications

Is it possible to run .exe in unix

hi friends i want to know if its possible to run windows exe files in unix.... i know the file system in windows and unix are totally different. but is there any application which allows this???? (2 Replies)
Discussion started by: vikashtulsiyan
2 Replies

6. HP-UX

How to run .exe file

Hello, I have an test.exe file under a directory. When i execute the .exe file directory from the prompt, i get following error: $ test.exe <enter> ksh: test.exe: not found How do i solve this error? TIA, Ramesh (1 Reply)
Discussion started by: brap45
1 Replies

7. Linux

How to run .exe

Hai, is there any way to run an .exe file in unix environment . i have read that WINE HQ supports this concept but its very inconsistent and upto the user risk . but i tried WINE but iam not able to configure it can any one help me in this matter Regards Sanju (1 Reply)
Discussion started by: sanjustudy
1 Replies

8. UNIX for Dummies Questions & Answers

not able to run base64 exe

Hi, I have copied base64.exe under base64-1.3 folder and i am trying to run base64.exe from another folder called Request. But i am getting the following error message. mga.ksh: base64: not found Please let me know how to execute the base64.exe from a directory where it is not installed. ... (0 Replies)
Discussion started by: lotus123
0 Replies

9. Shell Programming and Scripting

Run an exe from different folder

Am trying to run a exe on my unix machine from a different folder. For instance, i have a perl file in a folder /home/asif/runprj.pl which runs a exe in a different folder /home/projects/cobsat/a.out and my perl file is something like this #!/usr/bin/perl... (1 Reply)
Discussion started by: Asif Ali
1 Replies

10. UNIX for Dummies Questions & Answers

Running EXE files on UNIX

I'm trying to find out if a executible file created in visual basic will run in the CGI-BIN of a unix server. I see the C section but no mention of VB. Thanks Sean (1 Reply)
Discussion started by: seanstog
1 Replies
Login or Register to Ask a Question