forked from ungleich-public/cdist
8 lines
173 B
Bash
8 lines
173 B
Bash
|
#!/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
|