crw-rw-rw- 1 root tty 5,0 Dec 14 22:21 /dev/tty
c在开头是什么意思?当我做像pwd> / dev / tty打印到stdout。文件/ dev / tty包含什么?
字符设备
Unix支持’设备文件’,这根本不是真正的文件,而是文件式的硬件设备访问点。
“字符”设备是逐字节接口的设备(与缓冲IO相反)。
TTY
/ dev / tty是一个特殊文件,表示当前进程的终端。所以,当你回显1> / dev / tty,您的消息(‘1’)将出现在您的屏幕上。同样,当你的cat / dev / tty,你的后续输入被重复(直到你按Ctrl-C)。
/ dev / tty不包含任何东西,但你可以从它读取并写入它(值得)。我不能想到一个很好的使用它,但有类似的文件,这是非常有用的简单的IO操作(例如/ dev / ttyS0通常是你的串行端口)
这个报价是从http://tldp.org/HOWTO/Text-Terminal-HOWTO-7.html#ss7.3:
/dev/tty stands for the controlling terminal (if any) for the current
process. To find out which tty’s are attached to which processes use
the “ps -a” command at the shell prompt (command line). Look at the
“tty” column. For the shell process you’re in,/dev/tty is the
terminal you are Now using. Type “tty” at the shell prompt to see what
it is (see manual pg. tty(1)). /dev/tty is something like a link to
the actually terminal device name with some additional features for
C-programmers: see the manual page tty(4).