From 43247252ddeedcf3955b030f2c77064089581cb0 Mon Sep 17 00:00:00 2001 From: dana Date: Mon, 17 Dec 2018 14:49:33 -0600 Subject: 43897: Add/update various completion functions * Update tail to support -q/-v on NetBSD * Add several new functions (with one change needed to _hosts compdefs) --- Completion/Unix/Command/_shred | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Completion/Unix/Command/_shred (limited to 'Completion/Unix/Command/_shred') diff --git a/Completion/Unix/Command/_shred b/Completion/Unix/Command/_shred new file mode 100644 index 000000000..ce583bee4 --- /dev/null +++ b/Completion/Unix/Command/_shred @@ -0,0 +1,19 @@ +#compdef shred gshred + +_arguments -s -S : \ + '(: * -)--help[display help information]' \ + '(: * -)--version[display version information]' \ + '(-f --force)'{-f,--force}'[bypass lack of write permissions]' \ + '(-n --iterations)'{-n+,--iterations=}'[specify number of overwrites]:overwrites [3]' \ + '--random-source=[get random bytes from specified file]:random source file:_files' \ + '(-s --size)'{-s+,--size=}'[shred specified number of bytes]:bytes' \ + '(--remove)-u[deallocate and remove file after overwriting]' \ + '(-u)--remove=-[like -u, or specify how to remove]::how to remove [wipesync]:(( + unlink\:"use standard unlink call" + wipe\:"like unlink, but obfuscate bytes in name first" + wipesync\:"like wipe, but sync each obfuscated byte to disk" + ))' \ + '(-v --verbose)'{-v,--verbose}'[display progress]' \ + '(-x --exact)'{-x,--exact}'[do not round file sizes up to nearest block]' \ + '(-z --zero)'{-z,--zero}'[add final overwrite with zeros]' \ + '*: :_files' -- cgit 1.4.1