Bash 脚本来 scp 远程服务器上目录中的最新文件
好吧,我有点知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在远程端编写一个脚本,使用
find
查找它,然后使用cat
将其发送到 stdout,然后运行:Write a script on the remote side that uses
find
to find it and thencat
to send it to stdout, then run: