summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/100.clean-disks
blob: 6903894be905d702164de13d4fd777f1d2830181 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# $Id: 100.clean-disks,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $
#

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 -delete
OpenPOWER on IntegriCloud