diff options
author | Jim Meyering <jim@meyering.net> | 2002-07-08 07:07:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-07-08 07:07:52 +0000 |
commit | a72662ed6bd55764c45bb3021d94a2008f28899c (patch) | |
tree | be0636524072497d99281a6ef881113a0a9288cf | |
parent | 89eb40507634f9fe8f4f511158b6831f68b91d69 (diff) | |
download | coreutils-a72662ed6bd55764c45bb3021d94a2008f28899c.tar.xz |
(cp invocation): Remove unnecessary "$@" in example;
Texinfo would render the @" as an umlaut over the following character.
From Paul Eggert.
-rw-r--r-- | doc/coreutils.texi | 2 |
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 |