Comments on: Finding & Deleting Linux Core Dump Files Safely https://www.gabrielharper.com/2009/05/finding-deleting-linux-core-dump-files-safely/ Business, Web Sites and Life Mon, 03 Aug 2009 05:34:11 +0000 http://wordpress.org/?v=2.7.1 hourly 1 By: SECUREFILTERENGINE https://www.gabrielharper.com/2009/05/finding-deleting-linux-core-dump-files-safely/#comment-35250 SECUREFILTERENGINE Wed, 17 Jun 2009 23:24:07 +0000 https://www.gabrielharper.com/?p=466#comment-35250 Gabriel : I came from google, so thank you for the helpful information. I wantto let you know that the re can be simplify to be : find . -type f -regex ".*/core\.[0-9]*$" -exec rm -v {} \; * means any number from 0 - 9 repeated any number of times. also, yours does not work if the core file name core.22378 Thanks, Gabriel :
I came from google, so thank you for the helpful information. I wantto let you know that the re can be simplify to be :

find . -type f -regex “.*/core\.[0-9]*$” -exec rm -v {} \;

* means any number from 0 - 9 repeated any number of times.

also, yours does not work if the core file name core.22378

Thanks,

]]>