Nov 24, 2002 #1 OieL MIS Sep 6, 2002 17 US Hi how can I use find that will search an entire directory but will exempt 2 files ..... core and a.out thanks
Hi how can I use find that will search an entire directory but will exempt 2 files ..... core and a.out thanks
Nov 25, 2002 #2 toolkit Programmer Aug 5, 2001 771 GB Code: find . ! -name core ! -name a.out -print Upvote 0 Downvote
Nov 25, 2002 #3 olded Programmer Oct 27, 1998 1,065 US find . ! \( -name core -o -name a.out \) -print Upvote 0 Downvote