How do I disconnect all other users in tmux? – Stack Overflow
Posted by jpluimers on 2018/03/12
The joy of single character command-line switches, so thanks [WayBack] demure for answering at [WayBack] How do I disconnect all other users in tmux? – Stack Overflow:
You can use
<prefix> D(where prefix isC-bby default), to chose which clients to detach; it will also list they col/lines as well as the last used time.You could also use tmux’s
detach-clientoptiondetach-client [-P] [-a] [-s target-session] [-t target-client] (alias: detach) Detach the current client if bound to a key, the client specified with -t, or all clients currently attached to the session speci- fied by -s. The -a option kills all but the client given with -t. If -P is given, send SIGHUP to the parent process of the client, typically causing it to exit.either from
<prefix>:followed bydetach [options]or on the command line inside tmux withtmux detach [options]
–jeroen






Leave a comment