我在centos中使用screen
,但在調用任何命令後未保存窗口的標題。未保存屏幕會話中的窗口標題
堆棧:
# Create a screen
$ screen
# Create a new window in screen
# Ctrl + a: c
# Set title of window
# Ctrl + a: A
# Write a "Some" window title (See screenshot #1)
# Execute command "ls"
$ ls
# After this command the title of window will be reseted (See screenshot #2)
我怎麼能保存窗口的屏幕的標題?
P.S.如果我使用自定義控制檯(例如Redis或PostgresSQL)運行惡魔化進程或其他進程,則會保存窗口標題。
謝謝。