This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/pacman/functions/pacman-list-disowned

23 lines
461 B
Plaintext
Raw Normal View History

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