aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2004-02-27 20:04:38 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2004-02-27 20:04:38 +0000
commite578c2421ca0967f1de2cb9870692fb6c1f572b9 (patch)
tree4dec06b3ad7c92808ad72c4560ec526f59b03d2b /usr.bin
parent73c02c410e7833a5609d36411abf8329344ea53c (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/find/find.115
1 files changed, 14 insertions, 1 deletions
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1
index 5981677430bc..7cb4ece72bfd 100644
--- a/usr.bin/find/find.1
+++ b/usr.bin/find/find.1
@@ -82,6 +82,9 @@ If the referenced file does not exist, the file information and type will
be for the link itself.
File information of all symbolic links not on
the command line is that of the link itself.
+This is a suitable replacement for the archaic
+.Ic -follow
+option.
.It Fl L
Cause the file information and file type (see
.Xr stat 2 )
@@ -727,10 +730,20 @@ Print out a list of all the files that are either owned by
.Dq wnj
or that are newer than
.Pa ttt .
-.It Li "find . -newerct '1 minute ago' -print"
+.It Li "find / -newerct '1 minute ago' -print"
Print out a list of all the files whose inode change time is more
recent than the current time minus one minute.
+.It Li "find / -type f -exec echo {} \e\;"
+Use the
+.Xr echo 1
+command to print out a list of all the files.
.El
+.Sh COMPATIBILITY
+The
+.Ic -follow
+option has been deprecated;
+.Fl H
+is considered to be a suitable replacement.
.Sh SEE ALSO
.Xr chflags 1 ,
.Xr chmod 1 ,