-
FTP Scripting
Pls i need someodys help!!!
i am trying to a write a script using a the /bin/bash script
All that i am trying to do is to log onto a remote server ( IP 10.0.0.59)
and then logon with a username and a password.
all this must be done in the script, any help with be GREAT!!
Gul :D
-
if you want to use ssh, then something like:
Code:
#!/bin/bash
ssh user@host
will open an ssh connection to the computer "host" using the username "user"
This will however need you to supply the password. You could look into SSH key authentication if you didn't want to be asked for a password every time.