相关:如何获取当前终端名称?
但我只想要当前终端的 ID,例如tty
返回时/dev/pts/11
我只想打印11
。
我的想法是在我的文件中变量\u
中的用户名之后的 shell 提示符中添加此信息:PS1
.bashrc
想要的结果:username11@localhost:~$
目前我有:
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u$(tty)@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
这使:username/dev/pts/11@localhost:~$
使用
\l
,它给出shell 终端设备名称的基本名称:这类似于越狱
\l
getty
。