File: _zmv

package info (click to toggle)
zsh 5.9-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,856 kB
  • sloc: ansic: 108,138; sh: 6,976; makefile: 722; perl: 687; awk: 291; sed: 16
file content (18 lines) | stat: -rw-r--r-- 805 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#compdef zmv zln zcp

_arguments -s -S -A '-*' \
  '(-C -L -s -p)-M[force mv]' \
  '(-M -L -s -p)-C[force cp]' \
  '(-M -C -p)-L[force ln]' \
  '-f[force overwriting of destination files]' \
  '-i[interactive: prompt for each operation]' \
  '-n[no execution: just print what would happen]' \
  '-Q[force bare glob qualifiers on]' \
  '(-C -M)-s[symbolic, passed down to ln]' \
  '-v[verbose: print line as it is executed]' \
  '-o[specify options to pass to underlying command]: opt string' \
  '(-M -C -L -s)-p+[specify program to run instead of cp, ln or mv]:program:_command_names -e' \
  '(-W)-w[implicitly add parenthesis to wildcards in the pattern]' \
  '(-w)-W[like -w, but turn wildcards in replacement patterns into references]' \
  '1:source pattern:_files' \
  '2:destination pattern:_files'