#!/bin/bash
nt opal
while true; do
	ssh -L 127.0.0.1:2222:127.0.0.1:2222 -L 127.0.0.1:4001:127.0.0.1:4001 opal.ucm.dev "$@"
	if [ "$#" -gt 0 ]; then break; fi
	read -t 2 -p 'connect again?  (^C to exit)  '
	echo
done
