How to write to stdin of execved process?

╄→尐↘猪︶ㄣ 提交于 2019-12-21 15:15:08

问题


I'm trying to execve a process that reads from stdin. I want to prepare stdin with some data so it can execute successfully. How can I do that?


回答1:


You will need to fork the execve call into a child process and then create a pipe from the parent process to the child's stdin.

Take a look at this link for a detailed example on how to use pipes: http://tldp.org/LDP/lpg/node11.html



来源:https://stackoverflow.com/questions/12611457/how-to-write-to-stdin-of-execved-process

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!