generate sorted / filtered list

Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
Nico Schottelius 2015-05-19 10:19:33 +02:00
parent 6ff6604941
commit f51a444012
1 changed files with 16 additions and 4 deletions

View File

@ -1,7 +1,19 @@
#!/bin/sh
# Generate filelist excluding stuff that takes only space
for pkg in bash systemd util-linux openssh; do
pacman -Qlq $pkg | grep -v \
-e /usr/share/man/
done
(
for pkg in systemd openssh \
bash bzip2 coreutils cryptsetup device-mapper dhcpcd \
diffutils e2fsprogs file filesystem findutils gawk \
gettext glibc grep gzip inetutils iproute2 \
iputils jfsutils less licenses linux logrotate lvm2 \
man-db man-pages mdadm nano pacman pciutils \
pcmciautils perl procps-ng psmisc reiserfsprogs \
s-nail sed shadow sysfsutils systemd-sysvcompat tar \
texinfo usbutils util-linux vi which xfsprogs \
; do
pacman -Qlq $pkg | grep -v \
-e /usr/share/man/ \
-e /usr/share/doc/
done
) | sort | uniq