
January 5th, 2011, 12:24 PM
|
|
Contributing User
|
|
Join Date: Aug 2005
Location: London, UK
|
|
|
I don't really understand what it is you're asking. Do you want to output the source code to the terminal? Can't you just use the "cat" command for this? For example, if your program was called "foo", you could run it and then print the source code with
$ ./foo; cat foo.c
Note the semi-colon separating the two command lines. Is this what you want? If not, can you give a more detailed explanation please?
|