 for HIVE in 0 1 2 3 4
 do
    for COMB in 0 1 2 3
    do
        #make sure all variables are escaped! Or they'll be interpreted locall

        ssh jetsonn1@h${HIVE}c${COMB} echo \${HOSTNAME} &
    done
 done

