Bash 脚本来 scp 远程服务器上目录中的最新文件

发布于 2024-09-30 21:09:02 字数 212 浏览 5 评论 0原文

好吧,我有点知道如何使用 find then cp 命令在本地执行此操作,但不知道如何使用 scp 远程执行相同操作。

所以知道这一点:

scp -vp me@server:/target/location/ /destination/dir/.

目标目录将充满数据库备份,我如何告诉它找到最新的备份,并在本地进行 scp ?

Ok so I kinda know how to do this locally with a find then cp command, but don't know how to do the same remotely with scp.

So know this:

scp -vp me@server:/target/location/ /destination/dir/.

That target directory is going to be full of database backups, how can I tell it to find the latest backup, and scp that locally?

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

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

发布评论

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

评论(2

高冷爸爸 2024-10-07 21:09:02
remote_dir=/what/ever
dst=remote-system.host.name.com
scp $dst:`ssh $dst ls -1td $remote_dir/\* | head -1` /tmp/lastmod
remote_dir=/what/ever
dst=remote-system.host.name.com
scp $dst:`ssh $dst ls -1td $remote_dir/\* | head -1` /tmp/lastmod
烟花易冷人易散 2024-10-07 21:09:02

在远程端编写一个脚本,使用 find 查找它,然后使用 cat 将其发送到 stdout,然后运行:

ssh me@server runscript.sh > localcopy

Write a script on the remote side that uses find to find it and then cat to send it to stdout, then run:

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