Compacte tudo no diretório atual

68

Gostaria de compactar e empacotar tudo, incluindo arquivos e pastas no diretório atual, em um único arquivo ZIP no Ubuntu.

Qual seria o comando mais conveniente para isso (e o nome da ferramenta a ser instalada, se houver)?

Editar: E se eu precisar excluir uma pasta ou vários arquivos?

    
por Terry Li 21.12.2011 / 22:16

2 respostas

85

Instale zip e use

zip -r foo.zip .

Você pode usar os sinalizadores -0 (nenhum) para -9 (melhor) para alterar a taxa de compactação

A exclusão de arquivos pode ser feita por meio do sinalizador -x . Do man-page:

-x files
--exclude files
          Explicitly exclude the specified files, as in:

                 zip -r foo foo -x \*.o

          which  will  include the contents of foo in foo.zip while excluding all the files that end in .o.  The backslash avoids the shell filename substitution, so that the name matching
          is performed by zip at all directory levels.

          Also possible:

                 zip -r foo foo [email protected]

          which will include the contents of foo in foo.zip while excluding all the files that match the patterns in the file exclude.lst.

          The long option forms of the above are

                 zip -r foo foo --exclude \*.o

          and

                 zip -r foo foo --exclude @exclude.lst

          Multiple patterns can be specified, as in:

                 zip -r foo foo -x \*.o \*.c

          If there is no space between -x and the pattern, just one value is assumed (no list):

                 zip -r foo foo -x\*.o

          See -i for more on include and exclude.
    
por 21.12.2011 / 22:27
15

Acho que muitas pessoas que chegam pelo Google a essa pergunta significam "arquivar e compactar" quando escrevem "zip". Uma alternativa para o formato zip é tar :

tar -czf copy.tar.gz whatever/

onde o arquivo compactado será copy.tar.gz e o conteúdo será tudo na pasta.

 -c, --create
       create a new archive
 -z, --gzip, --gunzip --ungzip
 -f, --file ARCHIVE
       use archive file or device ARCHIVE
    
por 14.08.2015 / 13:42