prezto/modules/pacman/functions/pacman-list-disowned

27 lines
522 B
Plaintext
Raw Normal View History

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>
#
# function pacman-list-disowned {
local tmp="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/pacman-disowned-$$"
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 -p "$tmp"
2011-10-12 03:13:58 +00:00
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"
# }