Metadata-Version: 2.0
Name: tmuxssh
Version: 1.1.0
Summary: ssh into several hosts at once using tmux
Home-page: http://github.com/spappier/tmuxssh
Author: Santiago Pappier
Author-email: spappier@gmail.com
License: MIT
Keywords: tmux ssh
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: docopt

tmuxssh
#######

ssh into several hosts at once using tmux

Installation
============

::

    pip install tmuxssh

Usage
=====

::

    Usage:
      tmuxssh [--template=<template>] <host>...
      tmuxssh --version
      tmuxssh -h | --help

    Options:
      --template=<template>  ssh command template
      --version              show version
      -h --help              show this screen

Examples
--------

::

    tmuxssh --template 'ssh -i ~/.ssh/my.pem -l ubuntu {}' 10.64.93.208 10.64.93.207
    tmuxssh --template 'ssh -ti ~/.ssh/jump.pem 10.1.1.1 "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ~/.ssh/another.pem -l ubuntu {}"' 10.64.93.208 10.64.93.207


