zshrs 0.9.3

The first compiled Unix shell — bytecode VM, worker pool, AOP intercept, SQLite caching
Documentation
1
2
3
4
5
6
7
8
9
10
11
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 "$@"