This will allow us to easily update and keep up-to date these two. The final pacstrap one is fairly hairy and will be dealt with another time. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
#compdef genfstab
|
|
|
|
local -a args=(
|
|
'(-h --help)'{-h,--help}'[display help]'
|
|
'-p[Avoid printing pseudofs mounts]'
|
|
'(-U)-L[Use labels for source identifiers]'
|
|
'(-L)-U[Use UUIDs for source identifiers]'
|
|
':*:_path_files -/'
|
|
)
|
|
|
|
_arguments $args
|