On 07 May 2008 14:26:32 -0700, Larry Jones wrote: > > Paul Coene writes: > >> See, I don't like having to know all the extensions. >
Paul, you can find text files using something like this: find . -type f -print | grep -v '/CVS' | xargs file | grep 'text' If that looks good, process the output to reset keywords: <line above> | cut -f1 -d':' | xargs cvs admin -kkv Similarly, you could grep -v (exclude) text files and use cvs admin to set those to binary. Ted -- dodecatheon at gmail dot com Frango ut patefaciam -- I break so that I may reveal
