Un-Compiling Files ??


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Un-Compiling Files ??
# 1  
Old 03-07-2003
Data Un-Compiling Files ??

I am using NCR Unix, with a progress database.

There are files that suddenly appear that are compiled (*.r) and I can't figure out where they are comming from.

Is there any way I can uncompile them? That way, I can possibly read them and find out where they are comming from?

Any ideas are welcome!!
I have rebuilt this box three times and they keep appearing (but I have 92 other systems, programmed exactly like this one, and they don't have these files.)
# 2  
Old 03-07-2003
to my knowledge there are decompilers, but only work with certain architechtures(sp). de compiliing as far as i know dosnt always work too well. in any language there is alwyas at least 5 different ways to do the same thing.
# 3  
Old 03-10-2003
Quote:
I have rebuilt this box three times and they keep appearing (but I have 92 other systems, programmed exactly like this one, and they don't have these files.)
Are the other 92 systems of the same hardware type? Are you able to post one of the files you found, someone may know what it means in relation to hardware/software.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to write files for compiling a program.?

I am hoping someone can give me a good free web resource for writing code to compile a binary executable. I am getting fairly decent at writing shell script, are the .f files just shell scripts? Also, I don't know where to begin on the makefiles. The reason I am curious is because I have been... (6 Replies)
Discussion started by: butson
6 Replies

2. UNIX for Dummies Questions & Answers

Compiling multiple files

Hey there,hope you are all well. Actually i am trying to compile two .c files with gcc in unix and i also have one .txt and one .h..How do i compine them alltogether in order for my program to run? I will have to do gcc -o myprog myprog1.c myprog2.c and then how i will use myprog with the .txt... (1 Reply)
Discussion started by: Aeria Gloris
1 Replies

3. Shell Programming and Scripting

Compiling n number of SQL files in loop

Trying to compile all SQL files using a shell script. But the below code is not working. Below Code works fine when for loop is not there(commenting line no: 1,2 and 9). 1. sq_lfile=`ls *.sql` 2. for current_sql_file in $sql_file 3. do 4. sqlplus uname/pass@Service>>SQLLOG << -ENDOFSQL... (3 Replies)
Discussion started by: Dip
3 Replies

4. Shell Programming and Scripting

Compiling all modified Java files in a folder on Unix

Hi all, I have a Unix script that will compile all Java files in a sub folder as follows: find . -name "*.java" -print -exec $JAVA_HOME/bin/javac -cp .:$CLASSPATH '{}' \; I would like to enhance it to only compile those Java files who: 1.) Have no class file 2.) Have a class file... (1 Reply)
Discussion started by: Annorax
1 Replies

5. Shell Programming and Scripting

Compiling multiple ".c" files starting with xxx

Hello, I am trying to figure out how I can write a bashscript that compiles several ".c" files that start with xxx (example: xxx_try.c and xxx_that.c) So I want to compile all these files with a bash script. Anyone can help pls? (6 Replies)
Discussion started by: Freak79
6 Replies

6. Programming

Compiling kernel mnodule spanning multiple files

Hello i guys i have a kernel module which has a list.c library I have one file mod.c (the main kernel module) and one list.c (which is the library) Could you please help me with the following questions .. 1) Is a header file needed (list.h) to be included in the mod.c ? 2) do we need to... (0 Replies)
Discussion started by: natraj
0 Replies

7. Solaris

compiling all 'C' files in one command

Hi, I have a directory structure containing 'C' files scattered in all sub folders. Now I want to compile all 'C' files using gcc command. I am using following command - find . -name "*.c" -exec gcc -o `basename {} .c` {} \; but is not working. also find . -name "*.c" | xargs -i... (1 Reply)
Discussion started by: sanjay1979
1 Replies

8. Programming

Compiling multiple cpp files (abstract factory pattern)

Hi all, I have been working with java for awhile and because of my school projects I needed to switch C++. I tried to implement some patterns in C++ but unfortunately I couldn't. Specifically, I tried to implement abstract factory pattern but since I used separated files (habitual behavior from... (4 Replies)
Discussion started by: SaTYR
4 Replies

9. Programming

compiling and linking 2 C files ...??

Hi mates, I am trying to copile and link to C programs with command: cc file1,file2 but i raises the error "file not found" ... am i doing the right way? any suggestion will be appreciated. thanks abdul (4 Replies)
Discussion started by: abdul
4 Replies

10. Programming

Including lib files when compiling

I am using the C compiler included with AIX 4.3.3. I am unable to include libraries when I try to create the executable. Is there a switch that has to be used at compile time to make this happen?? Can anyone help?? (2 Replies)
Discussion started by: andrewl68
2 Replies
Login or Register to Ask a Question