在linux中,如何编写一个shell脚本来实现如下功能?

2024-11-08 23:42:23
推荐回答(3个)
回答(1):

#!/usr/bin/expect
  set timeout 10

  spawn ssh pcs@11.17.1.2

  expect "*Password*"

  send "密码\r"

  expect ">"

  send "ls;cd back/rate/;run.sh\r"

  expect eof

回答(2):

看看rsh -l 用户名 11.17.1.2 /pcs/back/rate>run.sh
要先配置hosts等信任关系。

回答(3):