#!/bin/bash
if [ $# -ne 2 ] ; then
  echo "USAGE: $0 <user> <vm>"
  exit 1
fi

ssh -n root@$2 "cat /home/$1/.google_authenticator | head -1"
