~ubuntu-branches/debian/experimental/bash-completion/experimental

« back to all changes in this revision

Viewing changes to contrib/rrdtool

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2009-11-14 23:42:55 UTC
  • mfrom: (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091114234255-pfxxt8bobqbq9hqq
Tags: 1:1.1-3
debian/patches/03-fix_552631.patch fixed (Closes: #556251)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# bash completion for rrdtool
 
2
 
 
3
have rrdtool &&
 
4
_rrdtool ()
 
5
{
 
6
    cur=`_get_cword`
 
7
    COMPREPLY=( $( compgen -W 'create update updatev graph dump restore last \
 
8
        lastupdate first info fetch tune resize xport' -- "$cur" ) )
 
9
} &&
 
10
complete -F _rrdtool rrdtool
 
11
 
 
12
# Local variables:
 
13
# mode: shell-script
 
14
# sh-basic-offset: 4
 
15
# sh-indent-comment: t
 
16
# indent-tabs-mode: nil
 
17
# End:
 
18
# ex: ts=4 sw=4 et filetype=sh