2023-03-25 05:50:24 +08:00
|
|
|
#compdef genfstab
|
|
|
|
|
2023-03-25 06:04:23 +08:00
|
|
|
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 -/'
|
2023-03-25 05:50:24 +08:00
|
|
|
)
|
|
|
|
|
2023-03-25 06:04:23 +08:00
|
|
|
_arguments $args
|