首页 > 代码库 > ubuntu 下非交互式执行远程shell命令

ubuntu 下非交互式执行远程shell命令

apt-get install sshpass

sshpass -p **your_password** ssh -o StrictHostKeyChecking=no "root@$ip" "du -sm /home/bone/ext_disk/splunk/var/lib"

 

参考:

https://www.cyberciti.biz/tips/linux-running-commands-on-a-remote-host.html

http://unix.stackexchange.com/questions/38737/ssh-login-with-clear-text-password-as-a-parameter

ubuntu 下非交互式执行远程shell命令