尽管在 CentOS 7 中使用gunzip,仍无法更新 tar.gzip

尽管在 CentOS 7 中使用gunzip,仍无法更新 tar.gzip

我是 Linux 新手。我正在尝试更新tar.gzip位于/path/to/dir中的另一个文件/path/to/new_dir/。该文件是最新修改的文​​件path/to/new_dir/。我正在使用以下命令,但在一行中使用|.

gunzip /path/to/dir/archive_raw_data.tar.gzip | find /path/to/new_dir/* -type f -name "*.txt" | 
sort -nr | head -n 1 | tar -rvf /path/to/raw_file_bkp/archive_raw_data.tar -T -| gzip 
/path/to/dir/archive_raw_data.tar

但我收到以下错误:

gzip: /path/to/dir/archive_raw_data.tar: No such file or directory

从错误中可以清楚地看出gunzip无法解压缩该tar.gzip文件。

我用的是centOS7。

我在这里缺少什么?

相关内容