Linux fprintf的用法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
一、fprintf 函数描述
fprintf其作用是格式化打印,也叫格式化输出,可以指定输出到一个流文件中,即相输出流中写入数据。fprintf()函数根据指定的格式(format),向输出流(stream)写入数据(argument)。fprintf( )会根据参数format 字符串来转换并格式化数据,然后将结果输出到参数stream 指定的文件中,直到出现字符串结束('\0')为止。
函数声明:
- int fprintf (FILE* stream, const char*format, [argument])
- stream-- 这是指向 FILE 对象的指针,该 FILE 对象标识了输出数据流。
- format-- 这是 C 字符串,包含了要被写入到流 stream 中的文本。它可以包含嵌入的 format 标签,format 标签可被随后的附加参数中指定的值替换,并按需求进行格式化。
- format 标签属性是%[flags][width][.precision][length]specifier
- [argument]:附加的参数列表
其中,Linux的输出数据流stream提供了5种标准的流:
- stdin 标准输入
- stdout 标准输出
- stderr 标准错误
- stdprn 标准打印机
- stdaux 标准串行设备
stderr的优先级高于stdout,在输出调试信息的时候,优先使用fprintf(stderr,...),或者某个指定的文件流fprintf(some_stream,...)。
二、shell 输出重定向
需要说明的是stdin并不一定来自键盘,stdout也并不一定显示在屏幕上,他们都可以是重定向到磁盘文件或其他设备上。
shell下stdin,stdout和stderr的文件描述符分别是0,1和2。
2.1 采用 > 进行输出重定向,采用>>进行追加方式重定向
$./run > output.log #每次清空
$./run >> output.log #每次在outout.log末尾追加
运行./run后的正常日志会输出到output.log文件中,此时错误信息仍然会输出到屏幕。
2.2 分别输出正常日志和错误日志,2> 代表stderr重定向
$./run > output.log 2> error.log
2.3 错误日志合并到正常日志
$./run > output.log 2>&1
三、程序中输出重定向
利用freopen函数在程序中进行输出重定向.
函数声明:
- FILE * freopen(const char *filename, const char *mode,FILE *stream);
参数说明:
- filename:要打开的文件名;
- mode:文件打开的模式,和fopen中的模式(r/w)相同。
- stream:文件指针,通常使用标准流文件(stdin/stdout/stderr)。
使用方法:
#从文本输入
freopen("data.in","r",stdin);
#从屏幕输入
freopen("/dev/console","r",stdin);
#输出到文件
freopen("data.out","w",stdout);
if(freopen("err.log",w,stderr)==NULL)
{
fprintf(stderr,"error redirecting stderr\n");
}
#关闭重定向
fclose(stdin);
fclose(stdout);
参考:
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献14条内容
所有评论(0)