> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/pentesting/tool-usage/screen.md).

# Screen

#### Create new screen session

```
screen -S session_name
```

#### View sessions

```
screen -ls
```

#### Attach to a session:

```
screen -x session_name
```

#### Detach from the session:

```
Control Key + a + d
```
