summaryrefslogtreecommitdiffstats
path: root/Completion/Solaris/Command/_savecore
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-07-21 19:15:22 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-07-21 19:15:22 +0000
commit5b29fedad850299950195a1878fe4923778f9dcc (patch)
tree100a2decba0f1b6f8c4ed1b866bddd5f2ff57019 /Completion/Solaris/Command/_savecore
parent25322: fix printing of keys. (diff)
downloadzsh-5b29fedad850299950195a1878fe4923778f9dcc.tar
zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.gz
zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.bz2
zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.lz
zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.xz
zsh-5b29fedad850299950195a1878fe4923778f9dcc.tar.zst
zsh-5b29fedad850299950195a1878fe4923778f9dcc.zip
25324: Danek Duvall: some Solaris and more general completions
Diffstat (limited to 'Completion/Solaris/Command/_savecore')
-rw-r--r--Completion/Solaris/Command/_savecore12
1 files changed, 12 insertions, 0 deletions
diff --git a/Completion/Solaris/Command/_savecore b/Completion/Solaris/Command/_savecore
new file mode 100644
index 000000000..63bb81fb7
--- /dev/null
+++ b/Completion/Solaris/Command/_savecore
@@ -0,0 +1,12 @@
+#compdef savecore
+
+_savecore() {
+ _arguments -s \
+ '-L[Take live dump]' \
+ '-v[Verbose]' \
+ '-d[Disregard dump header valid flag]' \
+ '-f[Save crash dump from file]:file:_files' \
+ '::directory:_files -/'
+}
+
+_savecore "$@"