diff options
Diffstat (limited to 'bin/pacman-disowned')
-rwxr-xr-x | bin/pacman-disowned | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/pacman-disowned b/bin/pacman-disowned deleted file mode 100755 index df1b5da..0000000 --- a/bin/pacman-disowned +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$ -db=$tmp/db -fs=$tmp/fs - -mkdir "$tmp" -trap 'rm -rf "$tmp"' EXIT - -pacman -Qlq | sort -u > "$db" - -find /bin /etc /lib /sbin /usr \ - ! -name lost+found \ - \( -type d -printf '%p/\n' -o -print \) | sort > "$fs" - -comm -23 "$fs" "$db" |