blob: ac341be5c14fc8499dc04e923d77b4be45e61bee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env perl
use v5.10;
use strict;
use warnings;
if ($#ARGV != 0 || ! -d $ARGV[0]) {
say "Error with cleanup script: argument not provided or not a directory";
exit 1;
}
my $output_file = "$ARGV[0]/stat";
if (-f $output_file) {
unlink $output_file;
}
|