commit 4bd27a18cddc0cf3893d4f9ebfb17d1e36ff897a
parent d4a785df999d48c46f112da81a69e20d3e4b3923
Author: vaplv <vaplv@posteo.net>
Date: Mon, 25 Nov 2024 21:58:59 +0100
Correct an exemple given in the man page
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ecc.1 b/ecc.1
@@ -12,7 +12,7 @@
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program. If not, see <http://www.gnu.org/licenses/>.
-.Dd November 24, 2024
+.Dd November 25, 2024
.Dt ECC 1
.Os
.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -86,7 +86,7 @@ find . \\( -type f ! -name "*.par2" \\) \\
.Pp
Check all the files in the current directory:
.Bd -literal -offset Ds
-find . \\( ! -path . -prune -type f | -name "*.par2" \\) \\
+find . \\( ! -path . -prune -type f ! -name "*.par2" \\) \\
-exec ecc verify {} \\; 2> /tmp/log.err
.Ed
.Pp