Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Nov 2009 15:16:08 +0100
From:      "Matthias Andree" <matthias.andree@gmx.de>
To:        "Pawel Jakub Dawidek" <pjd@freebsd.org>, freebsd-current@freebsd.org
Cc:        freebsd-fs@freebsd.org
Subject:   Re: HEADS UP: Important bug fix in ZFS replay code!
Message-ID:  <op.u3ack6yd1e62zd@balu.cs.uni-paderborn.de>
In-Reply-To: <20091110224524.GC3194@garage.freebsd.pl>
References:  <200911102227.nAAMRXTf073603@svn.freebsd.org> <20091110224524.GC3194@garage.freebsd.pl>

next in thread | previous in thread | raw e-mail | index | archive | help
Am 10.11.2009, 23:45 Uhr, schrieb Pawel Jakub Dawidek <pjd@freebsd.org>:

> You can locate such files with the following command:
>
> 	# find / -perm -7777 -print0 | xargs -0 ls -ld

Use ls -ldb to be on the safe side (control characters!).

So how about these refinements:

find / -perm -7777 -exec ls -ldb '{}' +
find / -perm -7777 -ls (not sure what that does with escapes)

> You can locate and fix such files with the following command:
>
> 	# find / -perm -7777 -print0 | xargs -0 chmod a-s,o-w,-t

find / -perm -7777 -exec chmod a-s,o-w,-t '{}' +

-- 
Matthias Andree



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?op.u3ack6yd1e62zd>