about summary refs log tree commit diff
path: root/Completion/Solaris/Command/_savecore
diff options
context:
space:
mode:
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 "$@"