scripts/completions/_grub-list.zsh
Anna Schumaker e615a2d36b Create a grub-list.zsh command
For listing the available kernels on the current machine

Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
2021-11-30 13:58:24 -05:00

8 lines
162 B
Bash

#compdef grub-list.zsh
function _grub-list.zsh() {
_arguments \
{-h,--help}'[print help text]' \
{-e,--entries-only}'[print entries without row numbers]'
}