博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux redirect the stdout to a file
阅读量:5773 次
发布时间:2019-06-18

本文共 394 字,大约阅读时间需要 1 分钟。

 

1: int save_out = dup(fileno(stdout));//backup stdout
2: int out = open("cout.log", O_RDWR|O_CREAT|O_APPEND, 0600);
3: int  nRet;
4: fflush(stdout);
5: dup2(out, fileno(stdout));// redirect stdout to out
8: printf("Hello world!");
10: fflush(stdout);close(out);close(stdout);
11: dup2(save_out, fileno(stdout));//return the backup
12: close(save_out);

 

include the header file #include <fcntl.h>

转载地址:http://mqxux.baihongyu.com/

你可能感兴趣的文章
JavaScript学习笔记(12)——JavaScript自定义对象
查看>>
SQL中的Null深入研究分析
查看>>
多人交互与体感游戏开发相关技术说明
查看>>
Linux下的Memcache安装
查看>>
调用约定
查看>>
【转】ROS之topic和service通信比较
查看>>
[转]Linux 线程实现机制分析 Linux 线程实现机制分析 Linux 线程模型的比较:LinuxThreads 和 NPTL...
查看>>
lesson7:java线程池
查看>>
【2019年OCP新题】OCP题库更新出现大量新题-11
查看>>
N-Queens
查看>>
mysql允许远程连接
查看>>
day8 socket编程CS模型完善错误处理
查看>>
线程基础8-quene讲解
查看>>
bootstrap开始咯
查看>>
linux清理n天前的文件命令
查看>>
python windows下获取路径时有中文处理
查看>>
【转】AMD 的 CommonJS wrapping
查看>>
ArcGIS制图之Sub Points点抽稀
查看>>
博客检查
查看>>
php扩展下载网站
查看>>