vote up 1 vote down star

Hello,

I have some n number of files in a directory on my unix system . Is there a way to write a shellscript that will transfer all those files via scp to a remote system, i specify . Ill specify the password within the script, so that i dont have to enter it for each file. Is there a way to do this ?

Thank You

flag

0% accept rate

3 Answers

vote up 2 vote down

you could also use rsync. It seems to work better for multiple files than scp IMHO.

rsync -avzh /path/to/dir/ user@remote:/path/to/remote/dir/

Update

You can use rsync via ssh by adding the '-e' switch:

rsync -avzh -e ssh /path/do/dir/ user@remote:/path/to/remote/dir/
link|flag
The nice thing about scp ist that it uses a secure channel. rsync does not. – lutz Aug 28 at 11:52
You can force rsync to use ssh: 'rsync -avz -e ssh remoteuser@remotehost:/remote/dir /this/dir/' – flokra Aug 28 at 11:57
@flokra. Thanks, I was right in the middle of adding that update and got distracted. – bsisco Aug 28 at 12:03
vote up 1 vote down

What about wildcards or multiple files?

scp file1 file2 more-files* user@remote:/some/dir/
link|flag
vote up 1 vote down

You can do it with ssh public/private keys only. Or use putty in which you can set the password. scp doesn't support giving password in command line.

You can find the instructions for public/private keys here: http://www.softpanorama.org/Net/Application_layer/SSH/scp.shtml

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.