Hello all,
I'm working on a solaris box. How do I go about deleting all files in a folder, which have the word"Failure" in them ?
i'm trying something in the lines of the following, but it doesn't seem to remove anything.
rm -rf | find ./*.log -exec grep 'Failure' \;
Appreciate your inputs.