当前位置: 技术问答>linux和unix
你们是如何对字符串进行操作的(UNIX C)
来源: 互联网 发布时间:2015-04-12
本文导语: 环境:vmware wokestation(red hat LINUX release 9) 问题:FILE *popen(const char* command,const char* mode);我想从远端的标准输入接收一串command,应该怎么做.我还想从command中接收一些远端数据,像文件名. | The pop...
环境:vmware wokestation(red hat LINUX release 9)
问题:FILE *popen(const char* command,const char* mode);我想从远端的标准输入接收一串command,应该怎么做.我还想从command中接收一些远端数据,像文件名.
问题:FILE *popen(const char* command,const char* mode);我想从远端的标准输入接收一串command,应该怎么做.我还想从command中接收一些远端数据,像文件名.
|
The popen function create a pipe between the calling program and the command to be executed.then you can use the pipe for reading data form the stdout of the command and writing data into the stdin of the command.