Wednesday·21·November·2012
zutils: zcat and friends on Steroids //at 01:18 //by abe
I recently wrote about tools to handle archives conveniently. If you just have to handle compressed text files, there are some widely known shortcut commands to mimic common commands on files compressed with a specific compression format.
gzip | bzip2 | lzma | xz | |
---|---|---|---|---|
cat | zcat | bzcat | lzcat | xzcat |
cmp | zcmp | bzcmp | lzcmp | xzcmp |
diff | zdiff | bzdiff | lzdiff | xzdiff |
grep | zgrep | bzgrep | lzgrep | xzgrep |
egrep | zegrep | bzegrep | lzegrep | xzegrep |
fgrep | zfgrep | bzfgrep | lzfgrep | xzfgrep |
more | zmore | bzmore | lzmore | xzmore |
less | zless | bzless | lzless | xzless |
In Debian and derivatives, those tools are part of the according
package for that compression utility, i.e. the zcat
command is part of the gzip package and the
xzfgrep
command is part of the xz-utils package.
But despite this matrix is quite easy to remember, the situation has a few drawbacks:
- Those tools can only handle the format they’re written for (which
btw. means that all xz-tools can also handle
lzma
-compressed files aslzma
isxz
’s predecessor) zcat
and the other cat variants can’t even recognize non-compressed files and throw an error instead of just showing their contents.- I always tend to think that
lzcat
and friends are forlzip
-based compression asxzcat
can handlelzma
-compressed files anyway.
This is where the zutils project comes in: zutils provides the
functionality of most of these utilities, too, but with one big
difference: You don’t have to remember, think about or type which
compression method has been used for your data, just use
zcat
, zcmp
, zdiff
,
zgrep
, zegrep
, or zfgrep
and it
works — independently of what compression method has been used
— if any — or if there are different compression types
mixed in the parameters to the same command:
$ zfgrep foobar bla.txt fnord.gz hurz.xz quux.lz bar.lzma
Especially if you use logrotate and let
logrotate
compress old logs, it’s very comfortable that
one command suffices to concatenate all the available logfiles,
including the current uncompressed one:
$ zcat /var/log/syslog* | …
Additionally, zutils’ versions of these tools also support
lzip
-compressed files.
The zutils package is available in Debian starting with
Wheezy and in Ubuntu since Oneiric. When being installed, it replaces
the original z*
utilities from the gzip package
by diverting them away.
The only drawback so far is that there neither a
zless
nor a zmore
utility from the
zutils project, so zless bla.txt fnord.gz hurz.xz quux.lz
bar.lzma
will not work as expected even after
installing zutils as it is still the one from the gzip package and hence it will show you just the first two files in
plain text, but not the remaining ones.
Tagged as: bzip2, Debian, DWIM, gzip, logrotate, lzip, lzma, UUUT, xz, zcat, zcmp, zdiff, zgrep, ztest, zutils
// show without comments // write a comment
Related stories
Saturday·17·November·2012
deepgrep: grep nested archives with one command //at 02:00 //by abe
Several months ago, I wrote about grep everything and listed grep-like tools which can grep through compressed files or specific data formats. The blog posting sparked several magazine articles and talks by Frank Hofmann and me.
Frank recently noticed that we though missed one more or less mighty tool so far. We missed it, because it’s mostly unknown, undocumented and hidden behind a package name which doesn’t suggest a real recursive “grep everything”:
deepgrep
deepgrep
is part of the Debian package strigi-utils, a package which contains utilities related to the
KDE desktop search Strigi.
deepgrep
especially eases the searching through tar
balls, even nested ones, but can also search through zip files and
OpenOffice.org/LibreOffice documents (which are actually zip files).
deepgrep
seems to support at least the following archive
and compression formats:
- tar
- ar, and hence deb
- rpm (but not cpio)
- gzip/gz
- bzip2/bz2
- zip, and hence jar/war and OpenOffice.org/LibreOffice documents
- MIME messages (i.e. files attached to e-mails)
A search in an archive which is deeply nested looks like this:
$ deepgrep bar foo.ar foo.ar/foo.tar/foo.tar.gz/foo.zip/foo.tar.bz2/foo.txt.gz/foo.txt:foobar foo.ar/foo.tar/foo.tar.gz/foo.zip/foo.tar.bz2/foo.txt.gz/foo.txt:bar
deepgrep
though neither seems to support any LZMA based
compression (lzma, xz, lzip, 7z), nor does it support lzop, rzip,
compress (.Z suffix), cab, cpio, xar, or rar.
Further current drawbacks of deepgrep
:
- Nearly no commandline options, especially none of the common grep options
- No man-page or other documentation
- Exit code not related to search results, you have to check the output to see if something has been found
deepfind
If you just need the file names of the files in nested archives, the
package also contains the tool deepfind
which does
nothing else than to list all files and directories in a given set of
archives or directories:
$ deepfind foo.ar foo.ar foo.ar/foo.tar foo.ar/foo.tar/foo.tar.gz foo.ar/foo.tar/foo.tar.gz/foo.zip foo.ar/foo.tar/foo.tar.gz/foo.zip/foo.tar.bz2 foo.ar/foo.tar/foo.tar.gz/foo.zip/foo.tar.bz2/foo.txt.gz foo.ar/foo.tar/foo.tar.gz/foo.zip/foo.tar.bz2/foo.txt.gz/foo.txt
As with deepgrep
, deepfind
does not
implement any common options of it’s normal sister tool
find
.
[The following part has been added on 17-Nov-2012]
As with deepgrep, it also doesn’t seem to support any of the more modern or more exotic compression formats, i.e. it fails on modern debian binary packages which use xz compression on the data part:
deepfind xulrunner-18.0_18.0\~a2+20121109042012-1_amd64.deb xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/debian-binary xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz/triggers xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz/preinst xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz/md5sums xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz/postinst xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/control.tar.gz/control xulrunner-18.0_18.0~a2+20121109042012-1_amd64.deb/data.tar.xz
[End of part added at 17-Nov-2012]
Dependencies
The package strigi-utils doesn’t pull in the complete Strigi framework (i.e. no daemon), just a few libraries (libstreams, libstreamanalyzer, and libclucene). On Wheezy it also pulls in some audio/video decoding libraries which may make some server administrators less happy.
Conclusion
Both tools are quite limited to some basic use cases, but can be worth a fortune if you have to work with nested archives. Nevertheless the claim in the Debian package description of strigi-utils that they’re “enhanced” versions of their well known counterparts is IMHO disproportionate.
Most of the missing features and documentation can be explained by the primary purpose of these tools: Being backend for desktop searches. I guess, there wasn’t much need for proper commandline usage yet. Until now. ;-)
42.zip
And yes, I was curious enough to let deepfind
have a look
at 42.zip (the one from SecurityFocus, unzip seems not
able to unpack 42.zip from unforgettable.dk due a missing version compatibility)
and since it just traverses the archive sequentially, it has no
problem with that, needing just about 5 MB of RAM and a lot of time:
[…] 42.zip/lib f.zip/book f.zip/chapter f.zip/doc f.zip/page e.zip 42.zip/lib f.zip/book f.zip/chapter f.zip/doc f.zip/page e.zip/0.dll 42.zip/lib f.zip/book f.zip/chapter f.zip/doc f.zip/page f.zip 42.zip/lib f.zip/book f.zip/chapter f.zip/doc f.zip/page f.zip/0.dll deepfind 42.zip 11644.12s user 303.89s system 97% cpu 3:24:02.46 total
I though won’t try deepgrep
on 42.zip. ;-)
Tagged as: 42.zip, ar, bzip2, CLI, CLucene, deb, deepfind, deepgrep, efho, find, grep, gzip, jar, KDE, LibreOffice, Lucene, odt, OpenOffice.org, Rant, rpm, strigi, tar, UUUT, war, zip
// show without comments // write a comment
Related stories
Thursday·15·November·2012
Tools to handle archives conveniently //at 01:42 //by abe
TL;DR: There’s a summary at the end of the article.
Today I wanted to see why a dependency in a .deb
-package
from an external APT repository changed so that it became
uninstallable. While dpkg-deb --info foobar.deb
easily
shows the control information, the changelog is in the filesystem part
of the package.
I could extract that one dpkg-deb
, too,
but I’d have to extract either to some temporary directory or pipe it
into tar which then can extract a single file from the archive and
sent it to STDOUT:
dpkg-deb --fsys-tarfile foobar.deb | tar xOf - ./usr/share/doc/foobar/changelog.Debian.gz | zless
But that’s tedious to type. The following command is clearly less to type and way easier to remember:
acat foobar.deb ./usr/share/doc/foobar/changelog.Debian.gz | zless
acat
stands for “archive cat” is part of the atool suite of commands:
- als
- lists files in an archive.
$ als foobar.tgz drwxr-xr-x abe/abe 0 2012-11-15 00:19 foobar/ -rw-r--r-- abe/abe 13 2012-11-15 00:20 foobar/bar -rw-r--r-- abe/abe 13 2012-11-15 00:20 foobar/foo
- acat
- extracts files in an archive to standard out.
$ acat foobar.tgz foobar/foo foobar/bar foobar/bar bar contents foobar/foo foo contents
- adiff
- generates a diff between two archives using diff(1).
$ als quux.zip Archive: quux.zip Length Date Time Name --------- ---------- ----- ---- 0 2012-11-15 00:23 quux/ 16 2012-11-15 00:22 quux/foo 13 2012-11-15 00:20 quux/bar --------- ------- 29 3 files $ adiff foobar.tgz quux.zip diff -ru Unpack-3594/foobar/foo Unpack-7862/quux/foo --- Unpack-3594/foobar/foo 2012-11-15 00:20:46.000000000 +0100 +++ Unpack-7862/quux/foo 2012-11-15 00:22:56.000000000 +0100 @@ -1 +1 @@ -foo contents +foobar contents
- arepack
- repacks archives to a different format. It does this by first
extracting all files of the old archive into a temporary directory,
then packing all files extracted to that directory to the new archive.
Use the
--each
(-e
) option in combination with--format
(-F
) to repack multiple archives using a single invocation ofatool
. Note thatarepack
will not remove the old archive. $ arepack foobar.tgz foobar.txz foobar.tgz: extracted to `Unpack-7121/foobar' foobar.txz: grew 36 bytes
- apack
- creates archives (or compresses files). If no file arguments are specified, filenames to add are read from standard in.
- aunpack
- extracts files from an archive. Often one wants to extract all files in an archive to a single subdirectory. However, some archives contain multiple files in their root directories. The aunpack program overcomes this problem by first extracting files to a unique (temporary) directory, and then moving its contents back if possible. This also prevents local files from being overwritten by mistake.
(atool subcommand descriptions from the atool man page which is licensed under GPLv3+. Examples by me.)
I though miss
the existence of an agrep
subcommand. Guess why?
atool
supports a wealth of archive types: tar (gzip-,
bzip-, bzip2-, compress-/Z-, lzip-, lzop-, xz-, and 7zip-compressed),
zip, jar/war, rar, lha/lzh, 7zip, alzip/alz, ace, ar, arj, arc, rpm,
deb, cab, gzip, bzip, bzip2, compress/Z, lzip, lzop, xz, rzip, lrzip
and cpio. (Not all subcommands support all archive types.)
Similar Utilities
There are some utilities which cover parts of what atool does, too:
Tools from the mtools package
Yes, they come from the “handle MS-DOS floppy disks tool” package, don’t ask me why. :-)
- uz
gunzip
s and extracts agzip
‘dtar
‘d archives- Advantage over
aunpack
: Less to type. :-) - Disadvantage compared to
aunpack
: Supports only one archive format. - lz
gunzip
s and shows a listing of agzip
‘dtar
‘d archive- Advantage over
als
: One character less to type. :-) - Disadvantage compared to
als
: Supports only one archive format.
unp
unp
extracts one or more files given as arguments on the
command line.
$ unp -s Known archive formats and tools: 7z: p7zip or p7zip-full ace: unace ar,deb: binutils arj: arj bz2: bzip2 cab: cabextract chm: libchm-bin or archmage cpio,afio: cpio or afio dat: tnef dms: xdms exe: maybe orange or unzip or unrar or unarj or lha gz: gzip hqx: macutils lha,lzh: lha lz: lzip lzma: xz-utils or lzma lzo: lzop lzx: unlzx mbox: formail and mpack pmd: ppmd rar: rar or unrar or unrar-free rpm: rpm2cpio and cpio sea,sea.bin: macutils shar: sharutils tar: tar tar.bz2,tbz2: tar with bzip2 tar.lzip: tar with lzip tar.lzop,tzo: tar with lzop tar.xz,txz: tar with xz-utils tar.z: tar with compress tgz,tar.gz: tar with gzip uu: sharutils xz: xz-utils zip,cbz,cbr,jar,war,ear,xpi,adf: unzip zoo: zoo
So it’s very similar to aunpack
, just a shorter command
and it supports some more exotic archive formats which
atool
doesn’t support.
Also part of the unp package is ucat
which does
more or less the same as acat
, just with unp
as backend.
dtrx
From the man page of dtrx
:
In addition to providing one command to extract many different archive types,
dtrx
also aids the user by extracting contents consistently. By default, everything will be written to a dedicated directory that’s named after the archive. dtrx will also change the permissions to ensure that the owner can read and write all those files.Supported archive formats: tar, zip (including self-extracting .exe files), cpio, rpm, deb, gem, 7z, cab, rar, and InstallShield. It can also decompress files compressed with gzip, bzip2, lzma, or compress.
dtrx -l
lists the contents of an archive, i.e. works like
als
or lz
.
dtrx has two features not present in the other tools mentioned so far:
- It can extract metadata instead of the normal contents from .deb and .gem files.
- It can extract archives recursively, i.e. can extract archives inside of archives.
Unfortunately you can’t mix those two features. But you can use the following tool for that purpose:
deepfind
deepfind is a command from the package strigi-utils and recursively lists files in archives, including archives in archives. I’ve already written a detailed blog-posting about deepfind and its friend deepgrep.
tardiff
tardiff
was written to check what changed in source code
tarballs from one release to another. By default it just lists the
differences in the file lists, not in the files’ contents and hence
works different than adiff
.
Summary
atool
and friends are probably the first choice when it comes to
DWIM archive handling, also
because they have an easy to remember subcommand scheme.
uz
and lz
and the shortest way to extract or
list the contents of a .tar.gz file. But nothing more. And you have to
install mtools even if you don’t have a floppy drive.
unp
comes in handy for exotic archive formats atool
doesn’t support. And it’s way easier to remember and type than
aunpack
.
dtrx
is neat if you want to extract archives in archives
or if you want to extract metadata from some package files with just a
few keystrokes.
For listing all files in recursive archives, use
deepfind
.
Tagged as: 7zip, acat, adiff, als, apack, archives, atool, aunpack, bzip, bzip2, deb, deepfind, dtrx, floppy, gem, grep, gzip, lha, lrzip, lz, lzip, lzop, MS-DOS, mtools, rar, rpm, rzip, strigi-utils, tar, tardiff, ucat, unp, UUUT, uz, xz, zip
// show without comments // write a comment
Related stories
Monday·14·November·2011
grep everything //at 09:43 //by abe
During the OpenRheinRuhr I noticed that a friend of mine didn’t know
about zgrep
and friends. So I told him what other grep
variations I know and he told me about some grep variations I didn’t
know about.
So here’s our collection of grep wrappers, derivatives and variations. First I’ll list programs which search for text in different file formats:
grep through what | Fixed Strings | Wildcards / Basic RegExps | Extended RegExps | Debian package |
---|---|---|---|---|
uncompressed text files | fgrep | grep | egrep | grep |
gzip-compressed text files | zfgrep | zgrep | zegrep | zutils, gzip |
bzip2-compressed text files | bzfgrep | bzgrep | bzegrep | bzip2 |
xz-compressed text files | xzfgrep | xzgrep | xzegrep | xz-utils |
uncompressed text files in installed Debian packages | dfgrep | dgrep | degrep | debian-goodies |
gzip-compressed text files in installed Debian packages | - | dzgrep | - | debian-goodies |
PDF documents | - | - | pdfgrep | pdfgrep |
POD texts | podgrep | - | - | pmtools |
E-Mail folder (mbox, MH, Maildir) | - | mboxgrep -G | mboxgrep -E | mboxgrep |
Patches | - | grepdiff | grepdiff -E | patchutils |
Process list | - | - | pgrep | procps |
Gnumeric spreadsheets | ssgrep -F | ssgrep | ? | gnumeric |
Files in ZIP archives | - | - | zipgrep | unzip |
ID3 tags in MP3s | - | - | taggrepper | taggrepper |
Network packets | - | - | ngrep | ngrep |
Tar archives | - | - | targrep / ptargrep | perl (Experimental only for now) |
And then there are also greps for special patterns on more or less normal files:
grep for what | uncompressed files | compressed files | Debian package |
---|---|---|---|
PCRE (Perl Compatible Regular Expression) | pcregrep (see also the grep -P option) | zpcregrep | pcregrep |
IP Address in a given CIDR range | grepcidr | - | grepcidr |
XPath expression | xml_grep | - | xml-twig-tools |
One question is though still unanswered for us: Is there some kind of meta-grep which chooses per file the right grep from above by looking at the MIME type of the according files, similar to xdg-open.
Other tools which have grep in their name, but are too special to properly fit into the above lists:
- ext3grep: Tool to help recover deleted files on ext3 filesystems
- xautomation: Includes a tool named
visgrep
to grep for subimages inside other images.
Includes contributions by Frank Hofmann and Faidon Liambotis.
Tagged as: .deb, bzip2, CIDR, compression, Debian, debian-goodies, E-Mail, efho, ext3grep, Gnumeric, grep, grepcidr, gzip, ID3, list, Maildir, mbox, mboxgrep, mh, MP3, ngrep, packages, patches, PCRE, PDF, pdfgrep, Perl, pmtools, POD, podgrep, procps, taggrepper, TWIG, unzip, visgrep, xautomation, XDG, XML, xz, xz-utils, zip, zutils
// show without comments // write a comment
Related stories
Monday·09·October·2006
Fedora Legacy useless? //at 15:16 //by abe
For a (much too long) time, we ran our three AMD 64 bit virus scanners and spam filter boxes with Fedora Core 4. Since the the official support ended a few months ago when Fedora Core 6 Test 2 came out, so we decided to switch them over to support through the Fedora Legacy Project.
For testing purposes we first switched over one of the three boxes. But the test failed: Although the changes (as documented on the Fedora Legacy home page) seemed to work fine, not a single update came until the end of last week, even though there were partially remotely exploitable security issues in OpenSSL, OpenSSH, gzip, etc. during that time. There were also no announcements on the list since FC4 switched over to the Fedora Legacy Project, not for FC4 nor for any other distribution maintained by the Fedora Legacy Project.
So what the heck does the Fedora Legacy Project if not security updates?
I would be very happy if I could switch over those boxes to Debian or even Ubuntu, but there’s no BiArch support (running 32 bit applications on 64 bit operating systems transparently) in Debian (and therefore neither in Ubuntu) yet without a lot of manual fiddling and chroots, so we can’t run our 32 bit virus scanners on those 64 bit boxes with a debianesk operating system yet.
Today we’ve upgraded the last of those three boxes to Fedora Core 5.
Tagged as: 64 Bit, Admin, AMD, chroot, Debian, ETH Zürich, Fedora, Fedora Core 4, Fedora Core 5, Fedora Legacy, gzip, OpenSSH, OpenSSL, Rant, Security, Spam, SpamAssassin, Ubuntu, Updates, Virus, WTF
// show without comments // write a comment