systemd/shell-completion/zsh/_sd_unit_files

11 lines
263 B
Plaintext
Raw Normal View History

2022-05-14 02:56:24 +08:00
#autoload
2023-04-12 17:00:04 +08:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2022-05-14 02:56:24 +08:00
_sd_unit_files() {
local files expl
files=( '*:files:->files' )
_description files expl 'unit file'
_files "$expl[@]" -g '*.(automount|device|mount|path|service|socket|swap|target|timer)'
}