mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
Merge pull request #133 from rkm3/rkm3/adds-screen
basic usage for screen
This commit is contained in:
commit
1701905cfa
1 changed files with 20 additions and 0 deletions
20
common/screen.md
Normal file
20
common/screen.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# screen
|
||||
|
||||
> Hold a session open on a remote server. Manage multiple windows with a single SSH connection.
|
||||
|
||||
- Start a new screen session
|
||||
|
||||
`screen`
|
||||
|
||||
- Show open screen sessions
|
||||
|
||||
`screen -ls`
|
||||
|
||||
- Reattach to an open screen
|
||||
|
||||
`screen -r {{screen id}}`
|
||||
|
||||
- Detach from inside a screen
|
||||
|
||||
`ctrl+A D`
|
||||
|
Loading…
Add table
Reference in a new issue