在 Linux 中命名屏幕会话
我从一个 ssh 连接运行多个屏幕,当我通过 screen -ls 列出所有屏幕时,名称不是很具有描述性,当我有多个屏幕时,很难记住每个屏幕上运行的内容。有谁知道如何命名这些会话(最好是在创建屏幕时)。
I am running multiple screens from one ssh connection, when I list all of the screens via screen -ls
the names are not very descriptive and when I have multiple screens it becomes hard to remember what is running on each. Does anyone know how to name these sessions (preferably when creating the screen).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
-S
标志:You can make use of the
-S
flag:创建新会话时,可以使用此选项为会话指定一个有意义的名称。此名称标识“screen -list”和“screen -r”操作的会话。它取代了默认的 [tty.host]
检查此http://aperiodic.net/screen/quick_reference更多信息...
When creating a new session, this option can be used to specify a meaningful name for the session. This name identifies the session for "screen -list" and "screen -r" actions. It substitutes the default [tty.host]
check this http://aperiodic.net/screen/quick_reference for more info...