Zachariah Mully wrote:
> Sorry about the off topic post, but this dang Nimda worm is spreading
> eml files all over my samba servers and the idiots here at the office
> insist on opening them up (I can only patch so many computers at a
> time...) My bash knowledge is shaky at best and I can't figure out how
> to generate a list of *.eml files and then how to pipe this into rm. Can
> anyone help?
>
> Thanks again and sorry about the OT post.
>
> Zack
>
> _______________________________________________
> LinuxVirtualServer.org mailing list - lvs-users@xxxxxxxxxxxxxxxxxxxxxx
> Send requests to lvs-users-request@xxxxxxxxxxxxxxxxxxxxxx
> or go to http://www.in-addr.de/mailman/listinfo/lvs-users
find . -name *.eml|xargs -r rm -v >> rm.log
stuart
|