linux popen函数实现,Linux之popen()函数实现重定向功能

设计一个程序,要求利用popen函数,实现“ls –l > file.txt”的重定向功能,file.txt在程序中创建。

我们先来观赏一个很好的例子

1f633b6900d7d8ab9dad80b9a912b799.png

30085dfabd5463d21cb8edec43c20970.png

接下来根据阅读后的启发,我写出了如下程序。

#include

#include

int main()

{

FILE* stream;

FILE* w_stream;

char buf[1024];

memset(buf,0,sizeof(buf));

if((stream = popen("ls -l", "r")) != NULL)//将“ls -l”命令的输出 通过管道读取(“r”参数)到FILE* stream

{

if((w_stream = fopen( "file", "a+")) != NULL)

{

if(fread(buf, sizeof(char), sizeof(buf), stream) > 0)//将刚刚FILE* stream的数据流读取到buf中

{

if(fwrite(buf, 1, sizeof(buf), w_stream) > 0)//将buf中的数据写到FILE    *wstream对应的流中,也是写到文件中

{

fclose(w_stream);

pclose(stream);

}

else

{

printf("error - A\n");

}

}

else

{

printf("error - B\n");

}

}

else

{

printf("error - C\n");

}

}

else

{

printf("error - D\n");

}

return 0;

}

8f6b5b273162caa2ab0ae438557afaea.png

标签:error,重定向,stream,printf,popen,FILE,Linux,sizeof,buf

来源: https://blog.csdn.net/weixin_42048463/article/details/94829710

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值