Skip to content

Instantly share code, notes, and snippets.

@chabala
Last active April 21, 2024 06:49
Show Gist options
  • Star 72 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save chabala/22ed01d7acf9ee0de9e3d867133f83fb to your computer and use it in GitHub Desktop.
Save chabala/22ed01d7acf9ee0de9e3d867133f83fb to your computer and use it in GitHub Desktop.
Merge and extract tgz files from Google Takeout

Recently found some clowny gist was the top result for 'google takeout multiple tgz', where it was using two bash scripts to extract all the tgz files and then merge them together. Don't do that. Use brace expansion, cat the TGZs, and extract:

$ cat takeout-20201023T123551Z-{001..011}.tgz | tar xzivf -

You don't even need to use brace expansion. Globbing will order the files numerically:

$ cat takeout-20201023T123551Z-*.tgz | tar xzivf -

tar has been around forever, they didn't design it to need custom scripts to deal with multipart archives. Since it's extracting the combined archive, there's no 'mess of partial directories' to be merged. It just works, as intended.

An additional tip, courtesy of Dmitriy Otstavnov (@bvc3at): if you have pv available, you can track the progress of the extraction:

> pv takeout-* | tar xzif -
 190GiB 2:37:54 [18.9MiB/s] [==============>                                   ] 30% ETA 5:03:49
@chabala
Copy link
Author

chabala commented Jun 1, 2023

What's the best option for macOS if I went with the zip option?

Re-request the Takeout with tar.gz. Otherwise, Stack Overflow: https://unix.stackexchange.com/a/40565/19124

@paradite
Copy link

paradite commented Jul 5, 2023

Just a note for those who exported zip on macOS. You can merge the zip files simply with:

unzip \*.zip [Return]

(backslash is to escape * which would be expanded by default)

source: https://forums.macrumors.com/threads/unzip-multiple-files-into-one-folder.1645539/

@johannesunana
Copy link

johannesunana commented Jul 17, 2023

Thank you @chabala and @bvc3at! This worked for me on Windows 10 using Ubuntu on WSL. Glad I saw this as the top result.

@chabala
Copy link
Author

chabala commented Oct 25, 2023

gist comments are not a Q&A forum. If you have unix questions, ask them on StackOverflow.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment