Skip to content

Instantly share code, notes, and snippets.

@yosugi
yosugi / tmux-multi-ssh
Created June 21, 2016 05:44 — forked from nikushi/tmux-multi-ssh
tmuxで複数にsshしてコマンドシンクするスクリプト by @mikeda
#!/bin/bash
#
# http://tech.naviplus.co.jp/2014/01/09/tmuxで複数サーバの同時オペレーション/
#
if [ -n "$SESSION_NAME" ];then
session=$SESSION_NAME
else
session=multi-ssh-`date +%s`
fi