cdist-backup/hacking/filelist_from_package.sh
Nico Schottelius 75e3f3c90f write script to generate outdir from filelist
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
2015-05-13 08:13:54 +02:00

8 lines
173 B
Bash
Executable file

#!/bin/sh
# Generate filelist excluding stuff that takes only space
for pkg in bash systemd util-linux; do
pacman -Qlq $pkg | grep -v \
-e /usr/share/man/
done