This command is useful in cases where you need to leave some command in the running state, our command history is significantly important
Check if a system already running screens
screen -ls
Create/run a new screen console:
screen -S <screen-in-name>
Re-attach the screen:
screen -r <screen-in-name>
Kill screen session
screen -XS <screen-in-name> quit
useful links:
https://quickref.me/screen
No comments:
Post a Comment