Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


SFTP over shell script
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

SFTP over shell script

trexostrexos Member
edited February 2014 in General

Hey,

I try to create a shell script which connects to a server over sftp and uploads a file. I used it with FTP and it worked great but with SFTP I'm stuck. Here is a piece of my code:

#!/bin/bash echo "Backup uploading" sleep 1 sftp [email protected] put testfile /root/ sleep 1

I created the ssh keys and the connection without password works when I do it over my normal shell. But not as shell script. The script connects to the server but put doesn't work as it should.

Thanks for your help :)

Comments

Sign In or Register to comment.