(cp invocation): Remove unnecessary "$@" in example;
authorJim Meyering <jim@meyering.net>
Mon, 8 Jul 2002 07:07:52 +0000 (07:07 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 8 Jul 2002 07:07:52 +0000 (07:07 +0000)
Texinfo would render the @" as an umlaut over the following character.
From Paul Eggert.

doc/coreutils.texi

index ccb830023e12613aeb8d2587bb8071d67c15f954..91ef91833bc3721bc1b2bdccc559c46048f73588 100644 (file)
@@ -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