init
This commit is contained in:
22
.zprezto/modules/pacman/functions/pacman-list-disowned
Normal file
22
.zprezto/modules/pacman/functions/pacman-list-disowned
Normal file
@@ -0,0 +1,22 @@
|
||||
#
|
||||
# Lists Pacman disowned files.
|
||||
#
|
||||
# Authors:
|
||||
# Benjamin Boudreau <dreurmail@gmail.com>
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
local tmp="${TMPDIR:-/tmp}/pacman-disowned-$UID-$$"
|
||||
local db="$tmp/db"
|
||||
local fs="$tmp/fs"
|
||||
|
||||
mkdir "$tmp"
|
||||
trap 'rm -rf "$tmp"' EXIT
|
||||
|
||||
pacman --quiet --query --list | sort --unique > "$db"
|
||||
|
||||
find /bin /etc /lib /sbin /usr \
|
||||
! -name lost+found \
|
||||
\( -type d -printf '%p/\n' -o -print \) | sort > "$fs"
|
||||
|
||||
comm -23 "$fs" "$db"
|
20
.zprezto/modules/pacman/functions/pacman-list-explicit
Normal file
20
.zprezto/modules/pacman/functions/pacman-list-explicit
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# Lists explicitly installed Pacman packages.
|
||||
#
|
||||
# Authors:
|
||||
# Benjamin Boudreau <dreurmail@gmail.com>
|
||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||
#
|
||||
|
||||
pacman --query --explicit --info \
|
||||
| awk '
|
||||
BEGIN {
|
||||
FS=":"
|
||||
}
|
||||
/^Name/ {
|
||||
print $2
|
||||
}
|
||||
/^Description/ {
|
||||
print $2
|
||||
}
|
||||
'
|
Reference in New Issue
Block a user