1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Fix a logico in my last (commented out) commit.

This commit is contained in:
Joerg Wunsch 1997-03-10 19:18:23 +00:00
parent 02289df91c
commit 6a3946e014
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23613

View File

@ -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 -- {} \;