svn commit: r302082 - user/pho/stress2/misc

Peter Holm pho at FreeBSD.org
Wed Jun 22 11:38:27 UTC 2016


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
 


More information about the svn-src-user mailing list