summaryrefslogtreecommitdiff
path: root/doc/coreutils.texi
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-07-08 07:07:52 +0000
committerJim Meyering <jim@meyering.net>2002-07-08 07:07:52 +0000
commita72662ed6bd55764c45bb3021d94a2008f28899c (patch)
treebe0636524072497d99281a6ef881113a0a9288cf /doc/coreutils.texi
parent89eb40507634f9fe8f4f511158b6831f68b91d69 (diff)
downloadcoreutils-a72662ed6bd55764c45bb3021d94a2008f28899c.tar.xz
(cp invocation): Remove unnecessary "$@" in example;
Texinfo would render the @" as an umlaut over the following character. From Paul Eggert.
Diffstat (limited to 'doc/coreutils.texi')
-rw-r--r--doc/coreutils.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi
index ccb830023..91ef91833 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