Skip to content

Instantly share code, notes, and snippets.

@EwanDawson
Created January 18, 2012 00:09
Show Gist options
  • Save EwanDawson/1629928 to your computer and use it in GitHub Desktop.
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
# 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