#!/bin/bash
HOST="xxx.xxx.xxx.xxx"
USER="root"
#PASS="xxx"
CMD=$@
VAR=$(expect -c "
spawn /usr/bin/autossh -M 2000 -g -CNR 8080:127.0.0.1:8080 -R 2222:127.0.0.1:22 -R 5222:127.0.0.1:5222 -R 5000:127.0.0.1:5000 -R 8100:127.0.0.1:8100 $USER@$HOST $CMD
match_max 100000
#expect \"*?assword:*\"
#send -- \"$PASS\r\"
#send -- \"\r\"
expect eof
")
echo "==============="
echo "$VAR"