Automate scp file transfer using a shell script

前端 未结 13 1019
误落风尘
误落风尘 2020-11-30 17:24

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 specified remote system

13条回答
  •  無奈伤痛
    2020-11-30 18:18

    Try lftp

    lftp -u $user,$pass sftp://$host << --EOF--
    
    cd $directory
    
    put $srcfile
    
    quit
    
    --EOF--
    

提交回复
热议问题