Server IP : 172.16.15.8 / Your IP : 3.149.23.123 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /etc/bash_completion.d/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
# bash completion for lldpad # ## lldpad --help # usage: lldpad [-hdksv] [-f configfile] # options: # -h show this usage # -f use configfile instead of default # -d run daemon in the background # -k terminate current running lldpad # -s remove lldpad state records # -v show version # -V set syslog level # This file must be updated with any changes to, or additions to the options. # Could not get numeric value to work for the --stats interval # Considered parsing output of --help to complete options have lldpad && _lldpad_options() { local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="-h -f -d -k -s -v -V" case "${cur}" in *) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) ;; esac case "${prev}" in -f) _filedir return 0 ;; esac return 0 } complete -F _lldpad_options lldpad # Local variables: # mode: shell-script # sh-basic-offset: 4 # sh-indent-comment: t # indent-tabs-mode: nil # End: # ex: ts=4 sw=4 et filetype=sh