#!/bin/bash -eu
host=ucm.dev
if grep -q '^Host vopal$' ~/.ssh/config; then
	host=vopal
fi
if [ $# -gt 0 ]; then
	exec sshc "$host" "$@"
fi
exec ssh "$host"
