when I use the usual:
find . -type f -print | xargs grep -sl foobar
i get;
xargs unterminated quote error and have to use:
find . -type f -print | sed 's/^\(.*\)$//'\1'/' | xargs grep -sl foobar
to quote the output from find. anyone know a more elegant solution?
thoughts?
ken;
_______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"