Questions tagged [gnu-screen]

screen (GNU Screen) is a full-screen window manager that multiplexes a physical terminal between several processes, typically interactive shells. Before using this tag, read the "Which site is more appropriate?" section of the tag wiki.

screen (GNU Screen) is used to create virtual terminals, which run by their own when not under direct user control. This is especially useful while working with a remote system, when a disconnect can occur at any moment. In this case, the screen session will continue to execute and you may reattach a running screen later.

Screen also allows you to execute multiple commands in a single terminal without losing control over them.

One additional trick is that a single virtual screen can be used by several users simultaneously, allowing them to guide and observe actions of each other.

Which site is more appropriate?

If you intend to tag your question with this tag, consider if the question is more suitable for other Stack Exchange sites:

1022 questions
-3
votes
1 answer

Run a shell script on a screen in parallel and serially at the same time

I have 3 commands I want to run within a shell script within a GNU screen. The following is the content from script.sh. counter=$((counter + 1)) screen -dmS $counter sh -c \ "command1;exec bash;\ python3 script2.py ${word};exec bash…
anarchy
  • 3,709
  • 2
  • 16
  • 48
-3
votes
1 answer

Bash; Not running command in screen created

I'm new to all of this so I probably made a big rookie mistake. I want to start a screen, which was successful, and then run command, which is not working. When I terminate the screen the command runs, but it needs to be ran on that specific screen.…
Agavon
  • 3
  • 2
1 2 3
68
69