#!/bin/sh

if [ $# -eq 0 ]; then
    echo "Usage: concert-connect HOST"
    exit 1
fi

ssh $1 -t "TERM=screen tmux att -t concert"
