Skip to content
  • View menu
  • View sidebar

bioinfo core

Index & solution of bioInfo utilities

  • Home
  • All entries
  • Blogs
  • Contact
  • About

Categories

  • Between languages (7)
  • Blogs (8)
  • Python (35)
  • R (1)
  • Unix (37)

Tags

bedfile Blogs conda Excel html numpy Pandas Python R slurm Unix
07/22/202002/03/2023 by bioinfocore

Unix zip compress and decompress files or folder

  • Unix
  • Unix

Compress files:

zip output.zip file1 file2 file3

Compress folder:

zip -r output.zip folder1 folder2

Decompress zip file:

unzip output.zip  # unzip into the directory where the zip file exists 
unzip output.zip -d folder1 # unzip into folder from where the zip file exists

Source:
https://www.cyberciti.biz/faq/how-to-create-a-zip-file-in-unix/

Post navigation

← Previous Post Unix calculate the size of a folder/directory
Next Post → CONDA cheat sheet
Copyright 2024 | by bioinfocore