about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2021-10-11 23:43:47 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2021-10-11 23:43:47 +0900
commita18348b89726285863637fb5dc0833314906b6d2 (patch)
treeba533e3c5cf05a8662255d27525d9778c4ba92f3 /Completion
parent0b3b25979478ed8af7b337b9ed6739fd69dfeee8 (diff)
downloadzsh-a18348b89726285863637fb5dc0833314906b6d2.tar.gz
zsh-a18348b89726285863637fb5dc0833314906b6d2.tar.xz
zsh-a18348b89726285863637fb5dc0833314906b6d2.zip
49464: _basenc: new completion
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Linux/Command/_basenc30
1 files changed, 30 insertions, 0 deletions
diff --git a/Completion/Linux/Command/_basenc b/Completion/Linux/Command/_basenc
new file mode 100644
index 000000000..515621aaa
--- /dev/null
+++ b/Completion/Linux/Command/_basenc
@@ -0,0 +1,30 @@
+#compdef basenc
+# based on GNU coreutils 8.32
+
+local specs=(
+  + '(type)'
+  "(info)--base64[same as 'base64' program (RFC4648 section 4)]"
+  "(info)--base64url[file- and url-safe base64 (RFC4648 section 5)]"
+  "(info)--base32[same as 'base32' program (RFC4648 section 6)]"
+  "(info)--base32hex[extended hex alphabet base32 (RFC4648 section 7)]"
+  "(info)--base16[hex encoding (RFC4648 section 8)]"
+  "(info)--base2msbf[bit string with most significant bit (msb) first]"
+  "(info)--base2lsbf[bit string with least significant bit (lsb) first]"
+  "(info)--z85[ascii85-like encoding (ZeroMQ spec-32/Z85)]"
+
+  + enc
+  '(info dec -w --wrap)'{-w+,--wrap=}"[wrap encoded lines at specified column]:number of characters (0=disable wrapping) [76]: "
+
+  + dec
+  '(info enc -d --decode)'{-d,--decode}"[decode data]"
+  '(info enc -i --ignore-garbage)'{-i,--ignore-garbage}"[when decoding, ignore non-alphabet characters]"
+
+  + info
+  "(: -)--help[display help information and exit]"
+  "(: -)--version[output version information and exit]"
+
+  + input
+  '(info)1:input file:_files'
+)
+
+_arguments -s -S : $specs