Skip to content

Commit

Permalink
Update linux.md
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-hermann-sva authored Sep 22, 2024
1 parent 5fcc225 commit fe997fa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## BASH-SNIPPETS

<details><summary><b>TMUX</b></summary>

```bash
# CREATE NEW SESSION
tmux new -s runner

# DETACH SESSION (= EXIT W/O END THE SESSION)
STRG + B + :detach

# LIST EXISTING SESSIONS
tmux ls

# ATTACH EXISTING SESSION
tmux a -t runner
```

</details>

<details><summary><b>REMOVE QUOTES FROM STRING</b></summary>

```bash
Expand Down

0 comments on commit fe997fa

Please sign in to comment.