File: equery-find

package info (click to toggle)
dconf 0.5.1-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 232 kB
  • ctags: 49
  • sloc: python: 382; makefile: 86; 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