@@ -11,7 +11,7 @@ metadata:
---
- `zmx attach <sess-name> [command...]`: Create a session and attach to it (interactive. likely never use this; it's for your human operator).
-- `zmx run <sess-name> [-d] [--fish] [command...]`: run command in session, creating the session if it doesn't exist. `-d` detaches and returns immediately. `--fish` is required when the login shell is fish.
+- `zmx run <sess-name> [-d] [command...]`: run command in session, creating the session if it doesn't exist. `-d` detaches and returns immediately.
- `zmx list [--short]`: prefer `--short`
- `zmx kill <sess-name>... [--force]`
- `zmx detach <sess-name>`: detach all clients from a session.
@@ -44,8 +44,6 @@ zmx run abc123-dev go build ./...
## Detaching
-First check the user's shell with `getent passwd "$USER" | cut -d: -f7`. If it's fish, include `--fish`.-
```bash
# start long-lived processes in the background
zmx run abc123-api -d vp dev --port 3000