[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: find command usage



> 
> find . -name *.[ch] | grep -v "[23]600">cscope.file 
> 
> I don't know whether find has a negation operator similar to grep -v, but
> i have a feeling its there, time for me to look the man pages

there is

find . ! -name  "pattern" 

but cant think of a pattern that does what you want in a single step.

sreangsu