Skip to content

Instantly share code, notes, and snippets.

@olivertappin
Last active December 9, 2016 08:30
Show Gist options
  • Save olivertappin/055c16637831dc456b3ceb47beea7aee to your computer and use it in GitHub Desktop.
Save olivertappin/055c16637831dc456b3ceb47beea7aee to your computer and use it in GitHub Desktop.
Backup and restore public_html
# Backup a directory
cd ~
tar cvfz public_html.tar.gz public_html/
# Restore a directory
cd ~/public_html/
tar xvfz ../public_html.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment