#!/bin/sh

# ssh via a jump host
# example use: sshvia voltimand.cs.wisc.edu jupyter0000.chtc.wisc.edu
# the identity for the destination host needs to live on the jump host
jump=$1
shift
exec ssh -At "$jump" ssh "$@"

