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]'
|
2023-03-25 07:32:29 +08:00
|
|
|
'-f[Restrict output to mountpoints matching the prefix FILTER]'
|
|
|
|
'(-U -L)-t[Use TAG for source identifiers]:tag:(LABEL UUID PARTLABEL PARTUUID)'
|
|
|
|
'(-U -t)-L[Use labels for source identifiers]'
|
|
|
|
'(-L -t)-U[Use UUIDs for source identifiers]'
|
2023-03-25 06:04:23 +08:00
|
|
|
':*:_path_files -/'
|
2023-03-25 05:50:24 +08:00
|
|
|
)
|
|
|
|
|
2023-03-25 06:04:23 +08:00
|
|
|
_arguments $args
|