如何导入最新的数据库备份文件到备份服务器

How to import latest database backup file to backup server

我想导入*.sql.gz中的备份数据库文件到我的备份服务器。 我尝试使用 follow 命令,但出现错误

ls -Art *.sql.gz | tail -n 1 | gunzip -c | mysql --user=user --password=password database
gzip: stdin: not in gzip format

那么我怎样才能将最新的文件传输到 gunzip 是正确的。

尝试使用 xargs:

ls -Art *.sql.gz |tail -n 1 |xargs gunzip -c | mysql --user=user --password=password database