From ff910b0d6344bbdd7ca7b7905dc94c39398cf7c6 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 12:18:51 +0000 Subject: moved from Completion/AIX/_lscfg --- Completion/AIX/Command/_lscfg | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Completion/AIX/Command/_lscfg (limited to 'Completion/AIX') diff --git a/Completion/AIX/Command/_lscfg b/Completion/AIX/Command/_lscfg new file mode 100644 index 000000000..4667a0bd7 --- /dev/null +++ b/Completion/AIX/Command/_lscfg @@ -0,0 +1,21 @@ +#compdef lscfg + +local state line expl curcontext="$curcontext" disp list devs + +_arguments -C -s \ + '-l[display device information for named device]:device:->device' \ + '-v[display vital product data for physical devices]' && return 0 + +if [[ "$state" = device ]]; then + devs=( ${${${${(f)"$(lscfg)"}[6,-1]:# *}##??}/ ##[^ ]# #/:} ) + if zstyle -T ":completion:${curcontext}:devices" verbose; then + zformat -a list ' -- ' "$devs[@]" + disp=(-ld list) + else + disp=() + fi + _wanted devices expl 'device' compadd "$disp[@]" - "${devs[@]%%:*}" + return +fi + +return 1 -- cgit 1.4.1