User Tools

Site Tools


cleanup_crazy_temp_files

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cleanup_crazy_temp_files [2011/05/19 15:26] – created jtcleanup_crazy_temp_files [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-====== Cleanup crazy temp files ====== 
  
-<code perl> 
- 
-#!/bin/env perl 
-# name: clean-magick-tmp 
-# date: 20110515 
-# author: jason thomas <jason@lithiumfox.com> 
-# purpose: check tmp dir for pesky image magick tmp files that are larger then 3gb 
- 
-use strict; 
-my $maxsize = '3000000000'; 
-my $tmpdir = '/tmp'; 
-opendir (TMPDIR, $tmpdir);  
-my @tmpfiles = readdir(TMPDIR); 
-close (TMPDIR); 
- 
- foreach (@tmpfiles){ 
- my $pathtotmp = "$tmpdir/$_"; 
- if ($pathtotmp =~ m/^\/tmp\/magick-\w+/g){ 
-  
- if (-s $pathtotmp >= $maxsize){ 
- open (FH, "<$pathtotmp"); 
- if(tell(FH) != -1){ 
- print "$pathtotmp is big \n"; 
- unlink $pathtotmp; 
- 
- } 
- } 
- } 
- } 
- 
-</code> 
cleanup_crazy_temp_files.1305818783.txt.gz · Last modified: 2020/08/10 02:28 (external edit)