2012-02-01 04:37:51 +00:00
|
|
|
#
|
2012-06-17 19:49:03 +00:00
|
|
|
# Lists Pacman disowned files.
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Benjamin Boudreau <dreurmail@gmail.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2014-01-03 19:20:32 +00:00
|
|
|
local tmp="${TMPDIR:-/tmp}/pacman-disowned-$UID-$$"
|
2012-06-17 19:49:03 +00:00
|
|
|
local db="$tmp/db"
|
|
|
|
local fs="$tmp/fs"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
|
|
|
mkdir "$tmp"
|
|
|
|
trap 'rm -rf "$tmp"' EXIT
|
|
|
|
|
2012-06-17 19:49:03 +00:00
|
|
|
pacman --quiet --query --list | sort --unique > "$db"
|
2011-10-12 03:13:58 +00:00
|
|
|
|
|
|
|
find /bin /etc /lib /sbin /usr \
|
|
|
|
! -name lost+found \
|
|
|
|
\( -type d -printf '%p/\n' -o -print \) | sort > "$fs"
|
|
|
|
|
|
|
|
comm -23 "$fs" "$db"
|
|
|
|
|