From fe997fa912e8402e8943c2b678e5eef19b233774 Mon Sep 17 00:00:00 2001
From: patrick hermann <47567770+patrick-hermann-sva@users.noreply.github.com>
Date: Sun, 22 Sep 2024 21:05:31 +0200
Subject: [PATCH] Update linux.md
---
linux.md | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/linux.md b/linux.md
index 96baeb6..1c9b589 100644
--- a/linux.md
+++ b/linux.md
@@ -2,6 +2,24 @@
## BASH-SNIPPETS
+TMUX
+
+```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
+```
+
+
+
REMOVE QUOTES FROM STRING
```bash