I am trying to copy a file from my remote server to my local. Here's my script to run it, by using 'expect' to automaticlally send in password
scp user@host:/folder/myFile ./
expect "Password: "
send "myPassword"
When I run this, it still prompts for "Password", what is wrong?