summaryrefslogtreecommitdiff
path: root/rm-toobig
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-03-09 20:41:48 +0000
committerJonas Smedegaard <dr@jones.dk>2002-03-09 20:41:48 +0000
commitd6a23e40c18794bab2648a828cf230d0fce97ab7 (patch)
tree9da0b1466fee6257614b28217b0fe776097320c3 /rm-toobig
parent5d47d50473e14e79c77fa05a6b0057e8a317a5d6 (diff)
rename rm-toobig to localrmtoobig and add comments.
Diffstat (limited to 'rm-toobig')
-rwxr-xr-xrm-toobig14
1 files changed, 0 insertions, 14 deletions
diff --git a/rm-toobig b/rm-toobig
deleted file mode 100755
index 77889b1..0000000
--- a/rm-toobig
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# It seems netatalk has problems dealing with Eudora:
-# Occasionally files in the "Attachments Folder" explodes
-# to sizes in the area 80-100 Megabytes.
-#
-# This script is the simple "solution": delete huge files...
-#
-# I put it in a cron job once a month just before an
-# rsync script to mirror all homes to another machine.
-
-BASE=/home
-
-find $BASE -path '*Attachments*' -size +15000k -exec rm '{}' ';'