Find and delete all core files
Locate and remove all core files in system using the find command
find / -name core -exec rm {} \;
The find command replaces the {} characters in the command above with the filenames that it finds. You must include the \ immediately before the ; character.






Add New Comment
Viewing 2 Comments
Thanks. Your comment is awaiting approval by a moderator.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Add New Comment