projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89eb405
)
(cp invocation): Remove unnecessary "$@" in example;
author
Jim Meyering
<jim@meyering.net>
Mon, 8 Jul 2002 07:07:52 +0000
(07:07 +0000)
committer
Jim 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
patch
|
blob
|
history
diff --git
a/doc/coreutils.texi
b/doc/coreutils.texi
index ccb830023e12613aeb8d2587bb8071d67c15f954..91ef91833bc3721bc1b2bdccc559c46048f73588 100644
(file)
--- 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