From: Tim L. <ti...@ke...> - 2004-02-19 19:03:55
|
On Thu, Feb 19, 2004 at 06:50:59PM -0000, peter green wrote: > i have not been useing distro sources it's been vanilla all the way :) > is there any easy way to rind all .rej files in a current dir and it's > subdirs on linux ls -r *.rej seems not to work Try: find ./ -name "*.rej" You can substitute a directory other than the current "./" if you wish. --Tim Larson |