in message <[EMAIL PROTECTED]>, wrote Harald Weis thusly... > > 2. The `pkg_info -L' check does not certify that the file is > actually in its place
To actually verify the existence of the files, stat(2) them somehow (will work at least in bourne like shells) ... pkg_info -L <port-name> \ | awk '!/^(Info|Files:|$)/ { print $0 }' \ | xargs ls -l >/dev/null ... above will only show the error messages for missing files of a port|package. - Parv -- _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"