ssh可以直接在本地显示远程计算机所执行的命令
远程ip:192.168.4.36
本地:local5
[root@local5 ~] # ssh 192.168.4.36 df && ls
root@192.168.4.36's password:
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
48628536 37986912 8131596 83% /
/dev/sda1 101086 12055 83812 13% /boot
tmpfs 1037748 0 1037748 0% /dev/shm
12345.txt ---------------------------------------------------------------------------------------ls的内容直接被输出返回,不换行,不作任何提示
如果做用户切换之类的
需要使用 -t参数
ssh 192.168.4.36 -t "su - oracle"
阅读(18928) | 评论(0) | 转发(1) |