Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jun 2016 11:38:26 +0000 (UTC)
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r302082 - user/pho/stress2/misc
Message-ID:  <201606221138.u5MBcQOK075037@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pho
Date: Wed Jun 22 11:38:26 2016
New Revision: 302082
URL: https://svnweb.freebsd.org/changeset/base/302082

Log:
  Do not filter on type in find(1).
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  user/pho/stress2/misc/devfs.sh

Modified: user/pho/stress2/misc/devfs.sh
==============================================================================
--- user/pho/stress2/misc/devfs.sh	Wed Jun 22 11:29:21 2016	(r302081)
+++ user/pho/stress2/misc/devfs.sh	Wed Jun 22 11:38:26 2016	(r302082)
@@ -51,7 +51,7 @@ if [ $# -eq 0 ]; then
 else
 	if [ $1 = find ]; then
 		while [ -r $cont ]; do
-			find ${mntpoint}* -maxdepth 1 -type f > /dev/null 2>&1
+			find ${mntpoint}* > /dev/null 2>&1
 		done
 	else
 



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