Skip to content

Instantly share code, notes, and snippets.

@lyonsun
Last active August 29, 2015 14:01
Show Gist options
  • Save lyonsun/5fb0748b5b601252646c to your computer and use it in GitHub Desktop.
Save lyonsun/5fb0748b5b601252646c to your computer and use it in GitHub Desktop.
compress/zip and decompress/unzip multiple folders into one compressed file on linux console.
# tar: (c)reate g(z)ip (v)erbose (f)ile [filename.tar.gz] [contents]...
tar -czvf /var/file/bkup.tar.gz /home/code/bots /var/config /var/system
# zip: (r)ecursive [filename.zip] [contents]...
zip -r /var/file/bkup.zip /home/code/bots /var/config /var/system
# tar: e(x)tract g(z)ip (v)erbose (f)ile [filename.tar.gz] [contents]...
tar -xzvf /var/file/bkup.tar.gz /home/code/bots /var/config /var/system
# unzip: (r)ecursive [filename.zip] [contents]...
unzip -d /var/file/bkup.zip /home/code/bots /var/config /var/system
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment