从大型机到其他服务器的 sftp

发布于 2024-12-03 01:45:41 字数 116 浏览 0 评论 0原文

我需要一个 unix 脚本来将文件从大型机传输到另一台服务器。

目前我正在使用 ndm,但我不知道要更改为 sftp 需要进行哪些更改。

您能提供一些有用的代码吗?

谢谢

I need a unix script that would take the file from a mainframe to another server.

Presently i am using a ndm but i am not knowing what the changes would be required to change to sftp.

Can you please provide some code that would be helpful

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若言繁花未落 2024-12-10 01:45:41

我们使用的一些代码...

sftp [email protected] <<EOF
cd /var/www/vhosts/yyyyy.com/subdomain/sandbox/
get sandbox.sql
get sandbox.tgz
exit
EOF

修改它并从您想要保存文件的服务器调用它...

some code that we use ...

sftp [email protected] <<EOF
cd /var/www/vhosts/yyyyy.com/subdomain/sandbox/
get sandbox.sql
get sandbox.tgz
exit
EOF

modify it and call it from the server you want to have the files in...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文