2003-12-10 01:20:38 +00:00
|
|
|
|
# sitecopy(1) completion
|
|
|
|
|
# Copyright 2003 Eelco Lempsink <eelcolempsink@gmx.net>
|
2011-06-13 13:26:59 +02:00
|
|
|
|
# 2011 Rapha<68>l Droz <raphael.droz+floss@gmail.com>
|
2003-12-10 01:20:38 +00:00
|
|
|
|
# License: GNU GPL v2 or later
|
2003-12-31 07:22:37 +00:00
|
|
|
|
|
2011-04-05 00:35:51 +03:00
|
|
|
|
have sitecopy || return
|
|
|
|
|
|
2003-12-10 01:20:38 +00:00
|
|
|
|
_sitecopy()
|
|
|
|
|
{
|
2011-06-13 14:33:18 +02:00
|
|
|
|
local cur prev words cword split
|
|
|
|
|
_init_completion -s || return
|
2003-12-10 01:20:38 +00:00
|
|
|
|
|
2011-06-13 13:26:59 +02:00
|
|
|
|
case $prev in
|
|
|
|
|
--debug|-d)
|
|
|
|
|
COMPREPLY=( $( compgen -W "socket files rcfile ftp http httpbody rsh sftp xml xmlparse cleartext" \
|
|
|
|
|
-- "$cur" ) )
|
|
|
|
|
compopt -o nospace
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
--logfile|-g|--rcfile|-r)
|
|
|
|
|
_filedir
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
--storepath|-p)
|
|
|
|
|
_filedir -d
|
|
|
|
|
return 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2009-12-30 00:39:59 +01:00
|
|
|
|
case $cur in
|
2009-10-04 19:42:50 +02:00
|
|
|
|
--*)
|
2011-06-13 13:26:59 +02:00
|
|
|
|
COMPREPLY=( $( compgen -W "$(_parse_help $1)" -- "$cur" ) )
|
|
|
|
|
[[ $COMPREPLY == *= ]] && compopt -o nospace
|
2011-06-13 14:33:18 +02:00
|
|
|
|
return 0
|
2009-10-04 19:42:50 +02:00
|
|
|
|
;;
|
2011-06-13 13:26:59 +02:00
|
|
|
|
|
|
|
|
|
# only complete long options
|
|
|
|
|
-)
|
|
|
|
|
compopt -o nospace
|
|
|
|
|
COMPREPLY=( -- )
|
2011-06-13 14:33:18 +02:00
|
|
|
|
return 0
|
2009-10-04 19:42:50 +02:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2003-12-10 01:20:38 +00:00
|
|
|
|
|
2011-06-13 14:33:18 +02:00
|
|
|
|
if [ -r ~/.sitecopyrc ]; then
|
|
|
|
|
COMPREPLY=( $( compgen -W "$($1 -v | \
|
|
|
|
|
command sed -n '/^Site:/s/Site: //p')" -- "$cur" ) )
|
|
|
|
|
fi
|
2009-10-04 19:42:50 +02:00
|
|
|
|
return 0
|
2009-06-08 21:22:43 +03:00
|
|
|
|
} &&
|
2009-10-22 12:04:29 +03:00
|
|
|
|
complete -F _sitecopy -o default sitecopy
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|