diff options
author | joerg <joerg@FreeBSD.org> | 1997-03-10 19:18:23 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1997-03-10 19:18:23 +0000 |
commit | d385496034834317f739f0baf59b6b787b9f3ae6 (patch) | |
tree | 4207db5fb8cd6710b445ea1b14a2bb46ca11c9a2 /etc | |
parent | b27e3f2aefb500c7e0531c230663394cbf74518c (diff) | |
download | FreeBSD-src-d385496034834317f739f0baf59b6b787b9f3ae6.zip FreeBSD-src-d385496034834317f739f0baf59b6b787b9f3ae6.tar.gz |
Fix a logico in my last (commented out) commit.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/daily | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ cd /tmp # with -exec rm -f as root. This can be exploited to delete any file # on the system. # -#find / ! \( -fstype local -o -fstype rdonly \) -a -prune -o \ +#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 -- {} \; |