I can use this command on my Mac before
ssh `cat /my/login/host`
but I got the problem of nodename nor servname provided, or not known now....
If i use
cat /my/login/host
I will get
aloha@8.8.8.8
I also try this :
hello=`cat /my/login/host`
echo $hello # show aloha@8.8.8.8
but ...
ssh $hello # nodename nor servname provided, or not known
Any suggestions ?