当前位置: 技术问答>linux和unix
ssh scp的使用
来源: 互联网 发布时间:2016-03-18
本文导语: 我要用到remote test, 看着测试说明用了ssh和scp。 知道的不多, 望做过的朋友指点一下。 | $ cat ../ssh_ex #!/usr/bin/expect -f spawn ssh root@[ lindex $argv 0 ] expect "assword:" send "123456r" interact $ ./...
我要用到remote test, 看着测试说明用了ssh和scp。
知道的不多, 望做过的朋友指点一下。
知道的不多, 望做过的朋友指点一下。
|
$ cat ../ssh_ex
#!/usr/bin/expect -f
spawn ssh root@[ lindex $argv 0 ]
expect "assword:"
send "123456r"
interact
$ ./ssh_ex
#!/usr/bin/expect -f
spawn ssh root@[ lindex $argv 0 ]
expect "assword:"
send "123456r"
interact
$ ./ssh_ex
|
ssh user@host#port
scp sourcefile user@host#port:/
scp sourcefile user@host#port:/
|
举例如下:
ssh login
#ssh 192.168.1.55
#root: (need password)
~#
~# exit
#scp 192.168.1.55/home/test.cpp ./
#root: (need password)
ssh login
#ssh 192.168.1.55
#root: (need password)
~#
~# exit
#scp 192.168.1.55/home/test.cpp ./
#root: (need password)
|
http://bbs.iphone.com.cn/thread-28824-1-1.html
|
如果要自动的话,再加上expect 吧.
|
man scp
man ssh
man ssh