mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-22 16:20:23 +02:00
28 lines
1.4 KiB
Text
28 lines
1.4 KiB
Text
#compdef losetup
|
|
# based on util-linux 2.26.2
|
|
|
|
_arguments -S -A '-*' \
|
|
'(-l --list)'{-l,--list}'[list currently used loop devices]' \
|
|
'(-n --noheadings)'{-n,--noheadings}'[do not print heading for --list output]' \
|
|
'(-d --delete --detach -o --offset -a --all)'{-o,--offset}'+[specify data start is offset]:offset (bytes)' \
|
|
'(-O --output)'{-O,--output}'[specify columns to be printed with --list]:column: _values -s , column name sizelimit offset autoclear ro back-file' \
|
|
'(-P --partscan)'{-P,--partscan}'[scan the partition table of newly created loop devices]' \
|
|
'--raw[raw output format]' \
|
|
'(-r --read-only)'{-r,--read-only}'[set up a read-only loop device]' \
|
|
'(-v --verbose)'{-v,--verbose}'[verbose mode]' \
|
|
'(-V --version)'{-V,--version}'[display version information]' \
|
|
'(-h --help)'{-h,--help}'[display help]' \
|
|
'1:device:_files -g "/dev/loop<->"' \
|
|
'(-d --delete --detach)2:file:_files' \
|
|
- '(set1)' \
|
|
'(-o --offset)'{-a,--all}'[show the status of all loop devices]' \
|
|
- '(set2)' \
|
|
{-c,--set-capacity}'[reread the size of the file associated with the loop device]' \
|
|
- '(set3)' \
|
|
'(- 2)'{--delete,--detach,-d}'[detach from specified loop device]' \
|
|
- '(set4)' \
|
|
'(-D --detach-all)'{-D,--detach-all}'[detach all associated loop devices]' \
|
|
- '(set5)' \
|
|
{-f,--find}'[find the first unused loop device]' \
|
|
- '(set6)' \
|
|
{-j,--associated}'[show the status of all loop devices associated with an file]: : _files'
|