Lonnie Olson writes: > The definitive replacement of `rm -f ./114*` with many arguments is > simply this. > find . -name "114*" | xargs rm -f > with the caveat that it will descend into subdirectories. Why not: find . -name "114*" -delete