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