我被困在这里,我真的可以使用你的帮助。这是我的情况。
我期待创建一个可以使用 telnet 访问 unix 服务器的批处理脚本。在这里,unix 服务器会询问用户名/密码。在对用户进行身份验证后,我想对特定文件执行一些操作,例如 chown 。
这就是我想做的事情:
telnet
open xyz.abc.com
username
password
command 1
command 2
command 3
exit
在哪里
xyz.abc.com is the unix server where i want to connect.
username and password are the credentials to access this server
command 1,command 2,command 3 are the commands i want to run in the server.
我的问题是我不能使用 SSH。它应该从文件中获取所有数据,而不是提示用户输入数据,并且应该作为自动脚本运行。