File: equery-find

package info (click to toggle)
dconf 0.5.0-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 800 kB
  • ctags: 47
  • sloc: python: 380; makefile: 78; sh: 34
file content (6 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#!/bin/bash
for pkg in $(equery list | cut -d' ' -f5 | sort); do
	echo "===${pkg%-[0-9]*}==="
	equery files --filter=conf ${pkg%-[0-9]*}
	echo
done