The Way to Programming
The Way to Programming
I believe he means “core” files…as in dumps that occur in servers.
Use the following command:
If you want to remove all the core files from a particular directory structure, you could do:
find-name core -exec rm {} \;
for example, to remove all core files under /usr/lib, you could use:
find /usr/lib -name core -exec rm {} \;
Sign in to your account