当前位置: 技术问答>linux和unix
Linux下,printf将东西输出到哪了?
来源: 互联网 发布时间:2017-04-22
本文导语: 都打印在屏幕上了吗? | 默认是stdout,当前终端,但是stdout默认是有缓冲的,因此没显示的话最好在printf后紧跟fflush函数,将数据从缓冲中弄出来给我分 | 文件里 | ...
都打印在屏幕上了吗?
|
默认是stdout,当前终端,但是stdout默认是有缓冲的,因此没显示的话最好在printf后紧跟fflush函数,将数据从缓冲中弄出来给我分
|
文件里
|
写在STDOUT这个fd里,如果没有重定向,一般是当前终端
|
就是fd为1的文件句柄上
比方mysql
# ll /proc/2303/fd
total 0
lr-x------. 1 root root 64 Aug 26 10:28 0 -> /dev/null
l-wx------. 1 root root 64 Aug 26 10:28 1 -> /var/log/mysqld.log
lrwx------. 1 root root 64 Aug 26 10:28 10 -> socket:[15099]
比方mysql
# ll /proc/2303/fd
total 0
lr-x------. 1 root root 64 Aug 26 10:28 0 -> /dev/null
l-wx------. 1 root root 64 Aug 26 10:28 1 -> /var/log/mysqld.log
lrwx------. 1 root root 64 Aug 26 10:28 10 -> socket:[15099]
|
"文件"
|
要看启动这个命令的时候有没有重定向