#!/usr/bin/env bash

host=$1

shift

tmux neww -n "$host"

tmux send-keys -t "$host" "ssh $host
"

tmux send-keys -t "$host" "$@
"
