Skip to content

Instantly share code, notes, and snippets.

@gitshawn
Last active May 25, 2022 17:26
Show Gist options
  • Save gitshawn/8694dd3b5d5b036693c6a992c6b98b64 to your computer and use it in GitHub Desktop.
Save gitshawn/8694dd3b5d5b036693c6a992c6b98b64 to your computer and use it in GitHub Desktop.
Working with encrypted and compressed .tar.zst.age files
  • These files typically are password / key protected.

To Install:

  • On a Mac, with Homebrew: brew install age zstd

  • On Windows, with Chocolatey: choco install -y age.portable zstandard

To decrypt and uncompress, with a password:

age --decrypt -p -o somefile.tar.zst somefile.tar.zst.age
zstd -d somefile.tar.zst
tar -xvf somefile.tar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment