Linux – Rename screen session

gnu-screenlinux

Is it possible to change the name of a GNU screen session? Say I called started it with "screen -S foo" and I want to rename it to bar.

Best Answer

If there are several sessions, use:

screen -S 8890.foo -X sessionname bar
Related Question