On Sat, Sep 18, 1999 at 01:23:53PM -0700, Seth R Arnold wrote: > (Actually, if there is any easy way to use the debian package > management system to find out this info, I suppose that would make me > more than happy...)
Sadly, there's no ready reference for all the various interfaces which have evolved to extract information out of the packaging system. However, the following works, at least for now: perl -n00e 'print if m(/etc/profile)' /var/lib/dpkg/status [replace /etc/profile with whatever config file you're looking for.] [the 00 is a double zero, not two capital letter "O"s.] -- Raul

