Como excluo um diretório de um arquivo zip usando um script bash?

19

Como excluo um diretório de um arquivo zip usando um script bash?

    
por UAdapter 04.05.2011 / 16:01

2 respostas

16

De man zip :

      zip -d foo foo/tom/junk foo/harry/\* \*.o

will  remove  the  entry  foo/tom/junk,  all  of  the  files  that  start  with
foo/harry/,  and  all  of  the files that end with .o (in any path).

Se isso não ajudar, você pode fornecer alguns detalhes sobre os comandos que você tentou e a saída?

    
por l0b0 04.05.2011 / 16:06
10

Se você quiser excluir todos os arquivos de um diretório específico, poderá fazer isso:

zip --delete file.zip "assets/*"
    
por user2766476 18.09.2013 / 18:05