Automate scp file transfer using a shell script

前端 未结 13 1034
误落风尘
误落风尘 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条回答
  •  萌比男神i
    2020-11-30 18:10

    What about wildcards or multiple files?

    scp file1 file2 more-files* user@remote:/some/dir/
    

提交回复
热议问题