tty 命令详解

| 选择喜欢的代码风格  

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

tty 命令安装:


-bash: tty: command not found

#Debian
apt-get install coreutils

#Ubuntu
apt-get install coreutils

#Alpine
apk add coreutils

#Arch Linux
pacman -S coreutils

#Kali Linux
apt-get install coreutils

#CentOS
yum install coreutils

#Fedora
dnf install coreutils

#OS X
brew install coreutils

#Raspbian
apt-get install coreutils

#Docker
docker run cmd.cat/tty tty

tty 命令补充说明:


tty 命令可以显示连接到当前标准输入的终端设备文件名。

tty 命令语法:


tty [OPTION]...

tty 命令选项:


-s, --silent, --quiet 不打印任何内容,仅返回退出状态。
--help  显示此帮助并退出。
--version 输出版本信息并退出。

tty 命令实例:


显示连接到当前标准输入的终端设备文件名:

[Command@NotFound ~]
$ tty
/dev/pts/0

tty 命令扩展阅读:




tty 命令评论