Skip to content

Instantly share code, notes, and snippets.

@oiao
Created August 2, 2020 14:19
Show Gist options
  • Save oiao/15fd154206749999c55f93fc1a41dec6 to your computer and use it in GitHub Desktop.
Save oiao/15fd154206749999c55f93fc1a41dec6 to your computer and use it in GitHub Desktop.
Miscs
# Encrypt archives
# https://askubuntu.com/questions/95920/encrypt-tar-gz-file-on-create
# Pack:
tar -cz FILENAMES | gpg -c -o ARCHIVE.tgz.gpg
# Unpack:
gpg -d your_archive.tgz.gpg | tar xz
####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment