Is it possible to make an executable look like a read-only file on Linux, such that opening the "file" for reading actually executes the file and makes its stdout available for reading as if it were data in the "file"? It should be openable by any program that knows how to open a file for reading, for example 'cat'.
|
1
|
|
|
|
|
|
Use FUSE |
||
|
|
Look at P.S. If you need language specific help, edit the question and add the language/environment you're working in and I'll try to provide more specifics. |
||||||||||
|
|
|
On unix-like OS's you can send the output of a program to a named pipe that is opened by another program. Look at the mkfifo command to create the named pipe. The named pipe works a lot like a file, with some limitations. For example, it is not seekable. |
||
|
|
|
|
Seems like you could pipe the output of the program into whatever you are using to "read". The problem is if you want to open the executable in say emacs or vim or whatever, it's not a matter of the executable so much as the editor doesn't know any other way to interpret it. |
||
|
|
