How to respond to password prompt when using SCP in a shell script?

后端 未结 12 1178
旧巷少年郎
旧巷少年郎 2020-12-16 19:21

First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation.<

12条回答
  •  自闭症患者
    2020-12-16 19:36

    Use "sshpass"!

    #!/bin/bash
    sshpass -p "password" scp -r /some/local/path user@example.com:/some/remote/path
    

提交回复
热议问题