2011-11-01 22:14:45 +02:00
|
|
|
# sitecopy(1) completion -*- shell-script -*-
|
2003-12-10 01:20:38 +00:00
|
|
|
# Copyright 2003 Eelco Lempsink <eelcolempsink@gmx.net>
|
2011-06-18 15:27:59 +03:00
|
|
|
# 2011 Raphaë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
|
|
|
|
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)
|
2011-06-18 15:27:15 +03:00
|
|
|
COMPREPLY=( $( compgen -W "socket files rcfile ftp http httpbody
|
|
|
|
rsh sftp xml xmlparse cleartext" -- "$cur" ) )
|
2011-06-13 13:26:59 +02:00
|
|
|
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-11-09 23:28:11 +02:00
|
|
|
if [[ -r ~/.sitecopyrc ]]; then
|
2011-06-13 14:33:18 +02:00
|
|
|
COMPREPLY=( $( compgen -W "$($1 -v | \
|
2011-06-18 15:27:15 +03:00
|
|
|
command sed -n '/^Site:/s/Site: //p')" -- "$cur" ) )
|
2011-06-13 14:33:18 +02:00
|
|
|
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
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|