Browse Source

still print about ugly files; from Todd.Miller@cs.colorado.edu

OPENBSD_2_0
deraadt 28 years ago
parent
commit
51f2b1a3c2
1 changed files with 12 additions and 11 deletions
  1. +12
    -11
      src/etc/daily

+ 12
- 11
src/etc/daily View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: daily,v 1.6 1996/06/17 09:09:39 deraadt Exp $
# $OpenBSD: daily,v 1.7 1996/07/12 21:34:47 deraadt Exp $
#
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local
host=`hostname -s`
@ -44,13 +44,14 @@ echo "Removing scratch and junk files:"
# find . ! -name . -mtime +7 -exec rm -f -- {} \; ; }
#fi
# XXX NOT REMOVING UNTIL SECURITY BUG IS FIXED
#cd /tmp
#TMP=daily.$$
#find / \( ! -fstype local -o -fstype rdonly -o -fstype fdesc \
# -o -fstype kernfs -o -fstype procfs \) -a -prune -o \
# -name 'lost+found' -a -prune -o \
# -name '*.core' -a -print -o \
cd /tmp
TMP=daily.$$
rm -f $TMP
echo -n > $TMP
find / \( ! -fstype local -o -fstype rdonly -o -fstype fdesc \
-o -fstype kernfs -o -fstype procfs \) -a -prune -o \
-name 'lost+found' -a -prune -o \
-name '*.core' -a -print > $TMP
# \( -name '[#,]*' -o -name '.#*' -o -name a.out \
# -o -name '*.CKP' -o -name '.emacs_[0-9]*' \) \
# -a -atime +3 -exec rm -f -- {} \; -a -print > $TMP
@ -59,9 +60,9 @@ echo ""
echo "Possible core dumps:"
egrep '\.core' $TMP
echo ""
echo "Deleted files:"
egrep -v '\.core' $TMP
#echo ""
#echo "Deleted files:"
#egrep -v '\.core' $TMP
rm -f $TMP


Loading…
Cancel
Save