From a72662ed6bd55764c45bb3021d94a2008f28899c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 8 Jul 2002 07:07:52 +0000 Subject: [PATCH] (cp invocation): Remove unnecessary "$@" in example; Texinfo would render the @" as an umlaut over the following character. From Paul Eggert. --- doc/coreutils.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/coreutils.texi b/doc/coreutils.texi index ccb830023e..91ef91833b 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -5703,7 +5703,7 @@ combination of options is this tiny Bourne shell script: #!/bin/sh # Usage: backup FILE... # Create a @sc{gnu}-style backup of each listed FILE. -for i in "$@"; do +for i; do cp --backup --force "$i" "$i" done @end example -- 2.47.3