Posts Tagged With: tar

Archive all files with a given extension

Tagged with: , , , , ,

Find all files with ‘.log’ extention and make an bzip archive


find /var/log -name '*.log' | tar cv --files-from=- | bzip2 > log.tar.bz2
No Comments »

Decompress Bzip2 File

Tagged with: , , , , , , , ,

Decompress a compressed tar archive in bzip2


tar -xvfj archive.tar.bz2tar -xvfj archive.tar.bz2
No Comments »

Create a Bzip2 File

Tagged with: , , , , , ,

create a tarball compressed into bzip2


tar -cvfj archive.tar.bz2 dir
No Comments »

Extract to Given Folder

Tagged with: , , , , ,

extract a tarball into / tmp


tar -xvf archive.tar -C /tmp
1 Comment »

Archive Contents

Tagged with: , , , ,

Show contents of an archive


tar -tf archive.tar
No Comments »

Uncompressed Tarball

Tagged with: , , , ,

Create a uncompressed tarball


tar -cvf archive.tar file
No Comments »

Read Tarballed Text File

Tagged with: , , , , ,

How to read a big text file that is tarballed - without extracting the whole thing…


bzcat enwiki-20070802-pages-articles.xml.bz2 | head -10

[tags]tar,zip,bzip,text,read,wikipedia[/tags]

No Comments »