From 002d68525c9de1230565d1a1c317996635d39172 Mon Sep 17 00:00:00 2001 From: Eric Cook Date: Sun, 20 Sep 2015 20:36:09 -0400 Subject: 36571: Completion for zsocket and updated losetup's completion --- Completion/Linux/Command/_losetup | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) (limited to 'Completion/Linux/Command/_losetup') diff --git a/Completion/Linux/Command/_losetup b/Completion/Linux/Command/_losetup index ff18681f1..359a9e0ea 100644 --- a/Completion/Linux/Command/_losetup +++ b/Completion/Linux/Command/_losetup @@ -1,14 +1,28 @@ #compdef losetup +# based on util-linux 2.26.2 -local cyphers -cyphers=( /proc/crypto/cipher/*(N:t) ) -cyphers="${cyphers[@]%-*}" - -_arguments -S \ +_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]' \ - '(-d --delete --detach -e --encryption)'{-e,--encryption}"+[enable encryption]:cypher:( $cyphers )" \ - '(-d --delete --detach -o --offset)'{-o,--offset}'+[specify data start is offset]:offset (bytes)' \ - '(-d --delete --detach -p --pass-fd)'{-p,--pass-fd}'+[read passphrase from specified file descriptor]:file descriptor:_file_descriptors' \ - '(-d --delete --detach -k --keybits)'{-k,--keybits}'+[set the number of bits to use in key]:key size:(64 128 160 192 256)' \ - '1:device:_files -g "loop*(-.)"' \ - '(-d --delete --detach)2:file:_files' + - '(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' -- cgit 1.4.1