Skip to content

Instantly share code, notes, and snippets.

@cgonzalezdai
Last active September 7, 2023 04:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgonzalezdai/efe15fb352f7a60778da095910cd95fa to your computer and use it in GitHub Desktop.
Save cgonzalezdai/efe15fb352f7a60778da095910cd95fa to your computer and use it in GitHub Desktop.
comandos linux

###comprime un fichero o directorio en archive.tar.gz

tar -czvf archive.tar.gz /path/to/directory-or-file 

###descomprime el fichero archive.tar.gz en la carpeta /temp

tar -xzvf archive.tar.gz -C /temp 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment