Unix Shell Programming
Finding core files
Find all core files:
#
find /
var
-name core
Fin
d
all files called core
and remove them:
#
find /var -name core -exec rm {} \;
Find all files called core and find out what type of file they are:
#
find /var -name core -exec file {} \;
Newer Post
Older Post
Home