I don’t know of any reason why unlink should fail under Linux, and in any case, from the fact that there is no error message (i.e., die is not called), it seems unlikely that unlink is the problem. Try running something like this:
for ( <grm_backup-*_*_*_*_*_*_EST_*.bak>,
<backup_db-*_*_*_*_*_*_EST_*.bak> )
{
printf "File '%s' was last modified %d days ago\n", $_, -M;
}
to verify that there are files meeting the criterion for deletion.
Note also that the until loop is doing nothing. It is equivalent to:
while ($log_written == 0)
{
...
$log_written = 1;
}
which guarantees that there will only ever be a single pass.
Hope that helps,
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|