Skip to content

Instantly share code, notes, and snippets.

@sergeimuller
Last active May 21, 2020 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sergeimuller/8d159e419f38e11b4892cbcc0af1b7fe to your computer and use it in GitHub Desktop.
Save sergeimuller/8d159e419f38e11b4892cbcc0af1b7fe to your computer and use it in GitHub Desktop.
Handy commands
# Compress directory into 500MB archives
tar cvzf - dir/ | split -b 500000000 - output.tar.gz.
# Extract multi-archive tar.gz files
cat output.tar.gz.* | tar xzvf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment