Created
January 18, 2012 00:09
-
-
Save EwanDawson/1629928 to your computer and use it in GitHub Desktop.
Debian: find all the files of a particular package that have been modified since the package was installed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Actually, lists the installed files in the order they were updated, most recent first. | |
# All the unmodified files will have the same last modified date, so it should be pretty | |
# easy to spot where the updated files begin. | |
PACKAGE=jetty # Replace with your package | |
ls -lt $(ls -Fd1 $(dpkg -L $PACKAGE) | grep -v "[\/\@]$") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment