![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to work with two files with awk | calsum | Shell Programming and Scripting | 14 | 04-24-2008 12:29 PM |
| why awk does not work here? | fedora | Shell Programming and Scripting | 2 | 09-05-2007 07:51 PM |
| Script doesn't work, but commands inside work | cheongww | UNIX for Dummies Questions & Answers | 2 | 11-14-2006 06:52 PM |
| Can I back up all the files I work with each day using tar? | jo calamine | Filesystems, Disks and Memory | 2 | 10-01-2006 02:35 PM |
| Files in work directory reverting to root ownership | canman | UNIX for Dummies Questions & Answers | 1 | 06-16-2005 08:24 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
How . exe files work
I work on a production server. We have some .exe files in our system, the source of these files are C++ programs that are stored in the development server. How these .exe work. Could somebody please tell that in detail. Thanks a lot!! Kanu |
| Forum Sponsor | ||
|
|
|
|||
|
Unlike windows, unix file extensions ( the part after the dot) do not necessarily mean anything.
To find out what a file is/does use the file command: Code:
file /usr/bin/ls file /usr file /path/to/your/exefiles/somefile.exe |
|
|||
|
exe file would have c/c++ programme containing main programme. while coding parameter like argv[1],argv[2].....soon might have been considered with appropriate logic...
You can pass parameters as, exename param1 param2 param3..... Hope this answers your question !! Shafi |