Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在终端中运行 scp 时,我想将密码放在一行中
scp user1@xxx.xxx.x.5:sys_config /var/www/dev/
感谢您的反馈让它工作我使用了 sshpass 工具。
sshpass -p 'password' scp user1@xxx.xxx.x.5:sys_config /var/www/dev/
使用 sshpass 效果最好。要在 scp 中包含您的密码,请使用“”:
scp user1:'password'@xxx.xxx.x.5:sys_config /var/www/dev/