I'm running this command from within / on a CentOS server:
grep -R tempdelete.pl *
Runs for a while but then crashes with Segmentation fault.
Why is this? I've seen seg faults in my own programs still in devel stage caused by an error, but not in a standard application that is not beta.
Is there another way I can accomplish this? I need to find any files that reference tempdelete.pl in them. It's a cron job that keeps failing because the file does not exist, and its not in cron tab, so want to know what keeps trying to call it every day.
grep -R tempdelete.pl *
Runs for a while but then crashes with Segmentation fault.
Why is this? I've seen seg faults in my own programs still in devel stage caused by an error, but not in a standard application that is not beta.
Is there another way I can accomplish this? I need to find any files that reference tempdelete.pl in them. It's a cron job that keeps failing because the file does not exist, and its not in cron tab, so want to know what keeps trying to call it every day.