aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic/daily/100.clean-disks
blob: 0df987daa77b970e94da909c16cb0e39c02b2dfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $Id: 100.clean-disks,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
#
# This is a security hole, never use 'find' on a public directory
# with -exec rm -f as root.  This can be exploited to delete any file
# on the system.
#

exit 0		# do not run by default

find / \( ! -fstype local -o -fstype rdonly \) -a -prune -o \
	\( -name '[#,]*' -o -name '.#*' -o -name a.out -o -name '*.core' \
	   -o -name '*.CKP' -o -name '.emacs_[0-9]*' \) \
		-a -atime +3 -exec rm -f -- {} \;