about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-04-13 16:11:53 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-04-13 16:11:53 +0000
commitc1db47d16b799820491994447514c7e3dbc7316a (patch)
tree5cfe106f39ade3d20eda794f1062505158a18dcb /Functions
parentb815f8922049d27641ec77ae7e63223c5de94c96 (diff)
downloadzsh-c1db47d16b799820491994447514c7e3dbc7316a.tar.gz
zsh-c1db47d16b799820491994447514c7e3dbc7316a.tar.xz
zsh-c1db47d16b799820491994447514c7e3dbc7316a.zip
Miek Gieben: users/12781: zmv Usage message
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zmv2
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Misc/zmv b/Functions/Misc/zmv
index e85b0b5ae..6b6c149b5 100644
--- a/Functions/Misc/zmv
+++ b/Functions/Misc/zmv
@@ -148,7 +148,7 @@ if (( $# != 2 )); then
   %N [OPTIONS] oldpattern newpattern
 where oldpattern contains parenthesis surrounding patterns which will
 be replaced in turn by \$1, \$2, ... in newpattern.  For example,
-  %N '(*).lis' '\\\\\$1.txt'
+  %N '(*).lis' '\$1.txt'
 renames 'foo.lis' to 'foo.txt', 'my.old.stuff.lis' to 'my.old.stuff.txt',
 and so on.  Something simpler (for basic commands) is the -W option:
   %N -W '*.lis' '*.txt'