]> ruin.nu Git - ndwebbie.git/blob - scripts/clean_cache.pl
Add the dependencies file
[ndwebbie.git] / scripts / clean_cache.pl
1 #!/usr/bin/perl -w
2
3 use strict;
4 use warnings;
5
6 use FindBin;
7 use lib "$FindBin::Bin/../lib";
8
9 use Cache::FileCache;
10
11 my $cache = new Cache::FileCache({cache_root => "/tmp/ndweb-$<", namespace => 'cache'} );
12
13 $cache->purge;
14