You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
386 B

7 years ago
tty
===
显示连接到当前标准输入的终端设备文件名。
6 years ago
## 说明
7 years ago
**tty命令** 可以显示连接到当前标准输入的终端设备文件名。
### 语法
```
tty [选项]
```
6 years ago
7 years ago
```
-s 什么也不显示,只返回退出状态值
```
### 例子
显示连接到当前标准输入的终端设备文件名。
```bash
[root@localhost ~]# tty
/dev/pts/0
```
6 years ago