One has to do
$ find -type f -exec find {} ! -anewer {} \;
because you haven't opened up restrictions on the use of {} to non
-exec, -ok usages:
$ find -type f ! -anewer {}
or maybe
$ find -type f ! -anewerself
if there are savings involved. Same for -cnewer.


_______________________________________________
Bug-findutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-findutils

Reply via email to