Como fazer com que o 7zip se comporte como o bzip (para zipar um arquivo e excluir o original)?

1

Eu gosto de usar o bzip para zipar arquivos porque ele apaga o original e deixa o novo arquivo.

Como posso usar o 7zip para compactar um arquivo e excluir o original depois que ele é compactado?

    
por benstin kavington 20.06.2013 / 03:30

2 respostas

0
  1. sudo apt-get install p7zip

  2. p7zip <filename> para compactá-lo (ele não sai do arquivo original)

  3. p7zip -d <filename>.7z para descomprimi-lo

Execução de amostra:

~/Temp$ ls -ltrh
total 4.0K
-rwxrwxr-x 1 thefourtheye thefourtheye 851 Jun 18 20:22 TestIP.sh

~/Temp$ p7zip TestIP.sh 

7-Zip (A) [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18
p7zip Version 9.20 (locale=en_IN,Utf16=on,HugeFiles=on,2 CPUs)
Scanning

Creating archive TestIP.sh.7z

Compressing  TestIP.sh      

Everything is Ok

~/Temp$ ls -ltrh
total 4.0K
-rw-rw-r-- 1 thefourtheye thefourtheye 567 Jun 20 08:53 TestIP.sh.7z

~/Temp$ p7zip -d TestIP.sh.7z 

7-Zip (A) [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18
p7zip Version 9.20 (locale=en_IN,Utf16=on,HugeFiles=on,2 CPUs)

Processing archive: TestIP.sh.7z

Extracting  TestIP.sh

Everything is Ok

Size:       851
Compressed: 567

~/Temp$ ls -ltrh
total 4.0K
-rwxrwxr-x 1 thefourtheye thefourtheye 851 Jun 18 20:22 TestIP.sh
    
por thefourtheye 20.06.2013 / 05:24
1

O p7zip parece excluir o arquivo depois de extraí-lo.

Use 7za em vez disso. Ele vem com o pacote 'p7zip-full'.

Por exemplo:

$ apt-get install p7zip-completo

$ 7za e abc.7z

    
por user439821 15.08.2015 / 09:39