Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 *.sql.gz 中的备份数据库文件导入我的备份服务器。我尝试使用以下命令,但出现错误
ls -Art *.sql.gz | tail -n 1 | gunzip -c | mysql --user=user --password=password database gzip: stdin: not in gzip format
那么如何将最新文件通过管道传输到 gunzip 是正确的。
尝试使用xargs:
xargs
ls -Art *.sql.gz |tail -n 1 |xargs gunzip -c | mysql --user=user --password=password database