2

Further to my previous question on screen not splitting my terminal , I got to the point where I can split my terminal horizontally but not vertically . This documentation says that vertical splitting requires screen >= 4.1. So how can I find out which version of screen I am using?

Geek
  • 6,688

2 Answers2

4

Type Ctrl-A then v. You'll get something on the status line that looks like

screen 4.00.03jw4 (FAU) 2-May-06

Flup
  • 8,145
2

From the command line

screen -v

From inside screen, type prefixv, where Ctrl-A is the default prefix key.

Note that unless you configured screen to not display its startup message (startup_message off) you'll see the version there as well. You can display that message with the license command (prefix: to enter commands in screen).

jw013
  • 51,212