How To Split Linux Terminal

Hi folks, Sometimes we want to run a command while inspecting the results. Here is the tips how to split linux terminal by using screen. First activate screen :
1 |
$ screen |
Split terminal horizontally :
1 |
Ctrl + A and then Shift + S |
Split terminal vertically :
1 |
Ctrl + A and then Ctrl + | (pipe sign) |
Activating window :
1 |
Ctrl + A and then press C |
Move between window :
1 |
Ctrl + A and then press Tab |
Thats how to split linux terminal.