我有一个存档
*.tar.gz
如何在目标目录中解压缩它?
gzip -dc archive.tar.gz | tar -xf - -C /destination
或者,使用 GNU 焦油
tar xzf archive.tar.gz -C /destination