DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: remove core dump script

  1. #1
    Join Date
    Oct 2001
    Posts
    126

    Exclamation

    Can someone share your script of removing core dump files for the unix system? I would like to set it up on the cron job so it will be taken care of automatically.

    Thank you very much.

    Susan


  2. #2
    Hi,

    Try this:

    #!/bin/sh

    find / -name core -exec rm {} \;

    read find manual to find more option. This is only basic command.

    regards,
    feroz

  3. #3
    Join Date
    Oct 2001
    Posts
    126
    Thank you very much.

    Susan

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width