From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3287 invoked by alias); 17 Aug 2011 15:19:56 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 16260 Received: (qmail 20163 invoked from network); 17 Aug 2011 15:19:52 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, SPF_HELO_PASS autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at mail.nih.gov designates 128.231.90.106 as permitted sender) X-IronPortListener: NIH_Relay X-SBRS: None X-IronPort-AV: E=Sophos;i="4.68,240,1312171200"; d="scan'208";a="481405490" X-Authentication-Warning: cosy.cit.nih.gov: arif set sender to Anthony R Fletcher using -f Date: Wed, 17 Aug 2011 11:09:45 -0400 From: Anthony R Fletcher To: Subject: Re: systemctl completion Message-ID: <20110817150945.GA25599@cosy.cit.nih.gov> Mail-Followup-To: zsh-users@zsh.org References: <20110729121054.GA25893@cosy.cit.nih.gov> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <20110729121054.GA25893@cosy.cit.nih.gov> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (cake.cit.nih.gov [165.112.93.31]); Wed, 17 Aug 2011 11:09:45 -0400 (EDT) --SUOF0GtieIMvvwua Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Here is my first attempt for systemctl completion. It mostly works for me and hopefully it'll work for others. Suggestions welcome. Anthony On 29 Jul 2011 at 08:10:54, Anthony R Fletcher wrote: > Does anyone have a completion script for systemd's systemctl? > > Anthony. > -- Anthony R Fletcher Room 2033, Building 12A, http://dcb.cit.nih.gov/~arif National Institutes of Health, arif@mail.nih.gov 12A South Drive, Bethesda, Phone: (+1) 301 402 1741. MD 20892-5624, USA. --SUOF0GtieIMvvwua Content-Type: text/plain; charset="us-ascii" Content-Disposition: attachment; filename="_systemctl" #compdef systemctl # Completion for systemd's systemctl # Version 1.0 ARF 3 August 2011 # list the unit completions. _systemd_units(){ local -a units local expl units=(${(f)"$( systemctl --full list-units | sed -e 's/ .*//' )"}) _wanted keys expl 'units' compadd "$units[@]" } # list the job completions. _systemd_jobs(){ local -a jobs local expl jobs=(${(f)"$( systemctl --full list-jobs | sed -e 's/ .*//' )"}) _wanted keys expl 'jobs' compadd "$jobs[@]" } # list the snapshot completions. _systemd_snapshots(){ local -a ss local expl ss=(${(f)"$( systemctl dump | sed -n -e 's/^-> Unit \(.*\.snapshot\):/\1/p' )"}) _wanted keys expl 'snapshots' compadd "$ss[@]" } _systemctl(){ local -a _systemctl_cmds # Determine the sub commands #$(systemctl --help | sed -n -e 's/^ \([a-z]\)/\1/p' | sed -e 's/ .*//') _systemctl_cmds=( list-units start stop reload restart try-restart reload-or- restart reload-or-try-restart isolate kill is-active status show reset-failed enable disable is-enabled load list-jobs cancel monitor dump dot snapshot delete daemon-reload daemon-reexec show- environment set-environment unset-environment default rescue emergency halt poweroff reboot kexec exit ) local curcontext="$curcontext" state line expl typeset -A opt_args # Initial flags _arguments -A '-*' \ '--help[Show help]' \ '--version[Show package version]' \ '(-a,--all)'{-a,--all}'[Show all units/properties, including dead/empty ones]' \ '--full[Dont ellipsize unit names on output]' \ '--failed[Show only failed units]' \ '--fail[When queueing a new job, fail if conflicting jobs are pending]' \ '--ignore-dependencies[ignore dependencies]' \ '(-p,--privileged)'{-p,--privileged}'[Acquire privileges before execution]' \ '(-q,--quiet)'{-q,--quiet}'[Suppress output]' \ '--no-block[Do not wait until operation finished]' \ '--no-wall[Dont send wall message before halt/power-off/reboot]' \ '--no-reload[dont reload daemon configuration]' \ '--no-pager[Do use pager]' \ '--no-ask-password[Do not ask for system passwords]' \ '--order[When generating graph for dot, show only order]' \ '--require[When generating graph for dot, show only requirement]' \ '--system[Connect to system manager]' \ '--user[Connect to user service manager]' \ '--global[Enable/disable unit files globally]' \ '(-f,--force)'{-f,--force}'[When enabling unit files, override existing symlinks. When shutting down, execute action immediately]' \ '--defaults[When disabling unit files, remove default symlinks only]' \ '*::command:->subcmd' && return 0 # Complete subcommands. if (( CURRENT == 1 )); then _describe -t commands "command" _systemctl_cmds return fi # handle arguments to the subcommands. case $words[1] in start|restart|reload|stop|status|try-restart|reload-or-restart|reload-or-try-restart|isolate|kill|is-active|show|reset-failed|enable|disable|is-enabled|load) # many units can be listed _arguments "*:key:_systemd_units" ;; cancel) _arguments "*:key:_systemd_jobs" ;; # snapshots snapshot) _normal ;; delete) _arguments "*:key:_systemd_snapshots" ;; # no arguments dump|dot|monitor|daemon-reload|daemon-reexec|show-environment|default|rescue|emergency|halt|poweroff|reboot|kexec|exit|list-jobs|list-units) ;; *) _message "unknown systemctl command: $words[1]" ;; esac } _systemctl "$@" --SUOF0GtieIMvvwua--