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?
Asked
Active
Viewed 1,328 times
2
2 Answers
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
screen -v
.... – poige Mar 01 '13 at 15:23