0: #!/usr/bin/perl
1:
2: #This is nothing special but it's the first real perl script I've done and I was interested
3: #in hearing comments and opinions. Sorry if it's a little remedial for everybody but I
4: #think it beats the hell out of a hello world.
5:
6: #This program deletes old unneeded backup logs with the goofy site dependent timestamp
7: #backup.MMDDYY.log.Z
8:
9: $now=time; #WHATS THE CURRENT DATE/TIME
10: $deldate=$now-2419200;
11: #GO BACK 20 WORK DAYS
12: ($seconds,$minutes,$hour,$monthday,$month,$year,$weekday,$yearday,$dst_flag)=localtime($deldate);
13: $month+=1; #FORMAT MONTH
14: $month*=10000;
15: $monthday*=100; #FORMAT DATE
16: $year-=100; #FORMAT YEAR
17: $TS=$year+$month+$monthday; #FORMAT TIMESTAMP
18: if ($TS < 100000) {
19: $TS ="0$TS";
20: }
21: $fullstamp="backup.$TS.log.Z";
22: unlink("/var/adm/$fullstamp"); #DELETE THE OLD LOGFILE
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
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.
|
|