Answer the question
In order to leave comments, you need to log in
How to run screen without the welcome screen?
To start the process in the background, I try to usescreen
#!/bin/bash
screen
/home/.../Telegram/Telegram -many -workdir /home/.../account-one
screen
welcome screen of the program pops up. Every time the OS is started. How to turn it off?
Answer the question
In order to leave comments, you need to log in
1. Just run the screen with the specified command, for example
2. You can run the script in detach mode and connect to it:
screen -d -m
screen -r
/home/.../Telegram/Telegram -many -workdir /home/.../account-one
nohup /home/.../Telegram/Telegram -many -workdir /home/.../account-one &
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question