Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to put the password in on one line when running scp in my terminal

scp user1@xxx.xxx.x.5:sys_config /var/www/dev/

share|improve this question

2 Answers

Thanks for your feed back got it to work I used the sshpass tool.

sshpass -p 'password' scp user1@xxx.xxx.x.5:sys_config /var/www/dev/

share|improve this answer
scp user1:password@xxx.xxx.x.5:sys_config /var/www/dev/
share|improve this answer
That doesn't work. – alecxe 4 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.