Help for this page

Select Code to Download


  1. or download this
    my (@file_change,@backup);
    my ($time2,$change,$file,$files);
    
  2. or download this
    open my $report, ">", "report.txt";
    
  3. or download this
    for $file (</tmp/*>) {
    
  4. or download this
    @file_change = stat($file);
    $time2 = $file_change[9];
    # (day = 86400, week = 604800)
    $change = (time - $time2);
    push @backup, $file if ($change < 604800) ;
    
  5. or download this
    # function to create tarball and backup changed files;
    sub backup {
    ...
    
    # run backup function
    backup();