summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Youngman <james@youngman.org>2021-06-25 19:30:04 +0100
committerJames Youngman <james@youngman.org>2021-06-25 19:30:04 +0100
commit70aede7af92b11ba0fb99ce83abe66b45cc8cc13 (patch)
treef1a38347ac518ea53b4e324a383be4d111c2c38a
parent11576f4e6ab6938faf3f39cd693c8131b75551f3 (diff)
downloadfindutils-70aede7af92b11ba0fb99ce83abe66b45cc8cc13.tar.gz
Fix Savannah bug 60823: unescaped `@' in find.texi code example.
-rw-r--r--doc/find.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/find.texi b/doc/find.texi
index d4b5601a..d70ccc2a 100644
--- a/doc/find.texi
+++ b/doc/find.texi
@@ -4987,7 +4987,7 @@ It is possible to use the @samp{-printf} action to abandon the use of
@code{test} entirely:
@smallexample
-newest=$(find subdir -newer timestamp -printf "%A@:%p\n" |
+newest=$(find subdir -newer timestamp -printf "%A@@:%p\n" |
sort -n |
tail -n1 |
cut -d: -f2- )