Skip to content

Instantly share code, notes, and snippets.

@hustjiangtao
Created November 3, 2019 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hustjiangtao/24c83af6a87976b86e13138b417d1fac to your computer and use it in GitHub Desktop.
Save hustjiangtao/24c83af6a87976b86e13138b417d1fac to your computer and use it in GitHub Desktop.
Backup on linux with tar or zip command
  • tar
# 打包压缩
$ tar -zcvf demo.tar ./demo/
$ tar zcvf demo.tar ./demo/
$ tar zcf demo.tar ./demo/

# 解压缩
$ tar xvf demo.tar
  • zip
# 打包压缩
$ zip -r demo.zip ./demo/

# 解压缩
$ unzip demo.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment