Metadata-Version: 2.1
Name: intmux
Version: 0.5.0
Summary: Connect to multiple hosts simultaneously "in tmux" via ssh and docker.
Home-page: https://github.com/dsummersl/intmux
Author: Dane Summers
License: MIT
Description: Introduction
        ============
        
        A command line application to connect to multiple hosts within a tmux session.
        
        Supports connections to SSH hosts, local docker and docker-compose.
        
        **SSH**
        
        By default intmux will open up to six hosts in a new tmux session. For example,
        the following command creates a new tmux session with two windows (one ssh'd to
        host1, another to user@host2):
        
            intmux ssh host1 user@host2
            intmux -i inputfile.txt ssh
        
        One could use the `--sync` option to enable tmux's 'synchronized-panes' setting:
        
            intmux --sync ssh host1 host2 host3
        
        **Docker**
        
        intmux can also be used to connect to all running docker instances:
        
            intmux docker
        
        Or connect to specific containers:
        
            intmux docker a7e8a0b392ea f947ff94a995
        
        **Docker-compose**
        
        All running services of the docker-compose in your current working directory can
        also be connected to:
        
            intmux compose
        
        
        Installation
        ------------
        
        Execute:
        
            pip install intmux
        
        Help
        ----
        
            intmux --help
        
            usage: intmux [-h] [--log LOG] [--command COMMAND] [--input INPUT]
                          [--script SCRIPT] [--tmux-panes PANES] [--tmux-sync]
                          [--tmux-session SESSION]
                          {ssh,docker,compose} ...
        
            Connect to several hosts in a tmux session.
        
            positional arguments:
              {ssh,docker,compose}  sub-command help
                ssh                 Connect to hosts via SSH
                docker              Connect to docker containers via 'docker exec'
                compose             Connect to docker containers associated with current
                                    docker-compose via 'docker exec'
        
            optional arguments:
              -h, --help            show this help message and exit
              --log LOG, -l LOG     Log level (default: WARN)
              --command COMMAND, -c COMMAND
                                    Command to execute when connecting to a remote host
              --input INPUT, -i INPUT
                                    Read list of hosts from input file when provided,
                                    otherwise from STDIN.
              --script SCRIPT, -s SCRIPT
                                    Execute commands in local file remotely
              --tmux-panes PANES, -p PANES
                                    Max tmux panes per window (default: 6)
              --tmux-sync, -S       Run tmux's set-option synchronize-panes on each tmux
                                    window
              --tmux-session SESSION, -t SESSION
                                    tmux session name (default: intmux)
        
Keywords: ssh tmux docker cli
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
