Split screen with GNU Screen

In a last post I wrote some use-cases of screen command. Now, I am going to add one missing thing - split screen (vertically). See following screenshot.

gnu_screen_split

Commands:

Ctrl+a followed by |   # (pipe) Split window

Ctrl+a followed by Tab    # Switch between split parts

Once you switched into created split window, you can either create a new window (Ctrl+a followed by c) or reopen already existing  window with Ctrl+a followed by n.

Resources: http://www.gnu.org/software/screen/manual/screen.html and http://unix.stackexchange.com/questions/26685/how-to-split-window-vertically-in-gnu-screen

#cli #linux