summaryrefslogtreecommitdiff
path: root/doc/coreutils.texi
diff options
context:
space:
mode:
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