I have made a short bash script that gets xml data using curl and sends some (it's a chat, in fact) regarding its given arguments. So I can either run the following :
watch --no-title myscript
and therefore keep an eye on what's going on online, or run :
myscript "some message"
The point is, I want to divide the terminal's screen in two part : one with the watch, and one with some kind of prompt/standard input, I don't know, but I want to get rid of the "two tabs in my terminal" stuff and get closer to an actual chat interface. See ?
EDIT : I'm basically looking for the right command to tell screen I want two screens, one above the other. Something like :
screen --number 2 --layout vertical

