Can a process 'foo' write to file descriptor 3, for example, in such a way that inside a bash shell one can do
foo 1>f1 2>f2 3>f3
and if so how would you write it (in C)?
|
Can a process 'foo' write to file descriptor 3, for example, in such a way that inside a bash shell one can do
and if so how would you write it (in C)?
| |||
|
feedback
|
|
The shell opens the file descriptors for your program before executing it. Simply use them like you would any other file descriptor, e.g. | |||
|
feedback
|
|
You can start your command with:
Then if you ls -l /proc/_pid_of_foo_/fd you will see that file descriptors are created, and you can write to them via eg.:
It would be less hacky perhaps if you checked the file descriptor first (with fcntl?). | |||
|
feedback
|
|
No. The file descriptors are opened by the shell and the child process inherits them. It is not the child process which opens these command-line accessible file descriptors, it is the bash process. There might be a way to convince bash to open additional file descriptors on behalf of the process. That wouldn't be portable to other shells, and I'm not sure if a mechanism even exists -- I am just speculating. The point is that you can't do this from coding the child process in a special way. The shell would have to abide your desires. | |||||
feedback
|
I'm not sure what you are precisely after, but whatever it is, starting point going to be the But obviously, the process | ||||
|
feedback
|