> Usually they're "core.<PID>", so you may want to search for "-name core.\*".


I did not find anything:

# for i in `find / -name "core.*" -print 2>/dev/null`
do
     file $i | grep "core file" >/dev/null
     if [ $? -eq 0 ]; then
         file $i
     fi
done
# 


-Gabriel

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to