Originally Posted By: ganbustein

find /var/db/receipts -name '*.bom' | while read x; do lsbom "$x" | grep MacOS/ARDAgent && echo $VT_BOLD$x$VT_NORMAL; done

DURN YOU!!! smile ... i was just this second typing up a post suggesting a similar lsbom/grep scrubbing...


echo; find /var/db/receipts -name '*.bom' |
while read x; do if lsbom -p MUGsf "$x" |
grep 'ARDAgent$'; then echo "$x"; echo; fi; done