home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / bash / completion-contrib / snownews < prev    next >
Encoding:
Text File  |  2006-08-28  |  406 b   |  19 lines

  1. # snownews completion by Guillaume Rousse <rousse@ccr.jussieu.fr>
  2. #
  3. # $Id: snownews,v 1.2 2005/01/03 03:00:44 ianmacd Exp $
  4.  
  5. _snownews()
  6. {
  7.     local cur
  8.  
  9.     COMPREPLY=()
  10.     cur=${COMP_WORDS[COMP_CWORD]}
  11.  
  12.     if [[ "$cur" == -* ]]; then
  13.         # return list of available options
  14.         COMPREPLY=( $( compgen -W '--update --help --version \
  15.                   --disable-versioncheck -u -h -V' -- $cur))
  16.     fi
  17. }
  18. complete -F _snownews snownews
  19.