I have a .sh shell script, with this content
ipserver = "66.249.95.255"
echo "root@${ipserver}"
ssh "root@${ipserver}"
but does not work, my echo is displaying:
root@
what am I doing wrong?
The blanks in the first line prevent it from executing.
Do this:
ipserver="66.249.95.255"