Fix Savannah bug 60823: unescaped `@' in find.texi code example.

This commit is contained in:
James Youngman 2021-06-25 19:30:04 +01:00
parent 11576f4e6a
commit 70aede7af9

View File

@ -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- )