Merge branch 'master' of git.mkray.de:mwtkrayer/session
This commit is contained in:
commit
920a568521
|
|
@ -0,0 +1,43 @@
|
|||
session
|
||||
---
|
||||
Manage detachable shell sessions using [dtach](https://github.com/crigler/dtach).
|
||||
|
||||
```text
|
||||
Usage: session mode [args]
|
||||
Available modes:
|
||||
attach | att | a attach to an existing session
|
||||
new | | n create a new session
|
||||
terminate | term | t terminate an existing session (SIGTERM)
|
||||
kill | | k send SIGKILL to an existing session
|
||||
list | ls | l list all available sessions
|
||||
info | | i print information on a session
|
||||
help | | h display this help message
|
||||
|
||||
session attach [name]
|
||||
Attach to specified session. If no session name is provided, an interactive
|
||||
selection menu is provided. Use <Ctrl-\> to detach.
|
||||
|
||||
session new [name]
|
||||
Create a new session. If no session name is provided, a generic name will
|
||||
be generated. Use <Ctrl-\> to detach.
|
||||
|
||||
session terminate [name]
|
||||
Terminate a specified session. If no session name is provided, all sessions
|
||||
will be terminated upon confirmation.
|
||||
|
||||
session kill [name]
|
||||
Same as 'terminate' but SIGKILL is sent to the shell instead of SIGTERM.
|
||||
|
||||
session list
|
||||
List all available sessions.
|
||||
|
||||
session info [name]
|
||||
Print information on a specified session. If no session name is provided,
|
||||
information on all sessions will be printed. The output contains the session
|
||||
name, the timestamp of creation and the path of its socket.
|
||||
|
||||
session help
|
||||
Print this help message.
|
||||
|
||||
session is configured using the file '$HOME/.sessionrc', which, if
|
||||
non-existent, can be initialized with 'session config generate'.'''
|
||||
Loading…
Reference in New Issue