Is it possible to create a screen and execute a command in it without actually open it?
What I need to perform is the following:
- Open a screen (
screen -S screen_name
) - Execute command in that screen
At the moment I need to manually create the screen, then enter it, and then execute the desired command.
Is it possible to do that only via 1 bash command?