290 lines
6.3 KiB
Plaintext
Raw Normal View History

2009-01-19 23:10:47 +01:00
# bash completion for samba
have smbclient || return
2009-01-19 23:10:47 +01:00
_samba_resolve_order()
{
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W 'lmhosts host wins bcast' -- "$cur" ) )
2009-01-19 23:10:47 +01:00
}
_samba_domains()
{
2009-10-04 19:42:50 +02:00
if [ -n "${COMP_SAMBA_SCAN:-}" ]; then
COMPREPLY=( $( compgen -W '$( smbtree -N -D )' -- "$cur" ) )
fi
2009-01-19 23:10:47 +01:00
}
_samba_hosts()
{
2009-10-04 19:42:50 +02:00
if [ -n "${COMP_SAMBA_SCAN:-}" ]; then
COMPREPLY=( $( compgen -W "$( smbtree -N -S | \
sed -ne 's/^[[:space:]]*\\\\*\([^[:space:]]*\).*/\1/p' \
)" -- $cur ) )
fi
2009-01-19 23:10:47 +01:00
}
_samba_debuglevel()
{
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W '0 1 2 3 4 5 6 7 8 9 10' -- "$cur" ) )
}
2009-01-19 23:10:47 +01:00
_smbclient()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
-R)
_samba_resolve_order
return 0;
;;
-t)
COMPREPLY=( $( compgen -W 'SJIS EUC JIS7 JIS8 JUNET HEX CAP' \
-- "$cur" ) )
return 0;
;;
-s|-A|--authentication-file)
_filedir
return 0;
;;
-l|--log-basename|-D)
_filedir -d
return 0;
;;
-O)
COMPREPLY=( $( compgen -W 'SO_KEEPALIVE SO_REUSEADDR \
SO_BROADCAST TCP_NODELAY IPTOS_LOWDELAY \
IPTOS_THROUGHPUT SO_SNDBUF SO_RCVBUF \
SO_SNDLOWAT SO_RCVLOWAT' -- "$cur" ) )
return 0;
;;
-T)
COMPREPLY=( $( compgen -W 'c x I X F b g q r N a' -- "$cur" ) )
return 0;
;;
-W|--workgroup)
_samba_domains
return 0;
;;
-d|--debuglevel)
_samba_debuglevel
return 0
;;
-p|--port|-M|-I|-b|-U|--user|-n|-i|-T|-c)
# argument required but no completions available
return 0
;;
-\?|--help|-V|--version)
# all other arguments are noop with these
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-b -d -L -U -I -M -m -A -N -i -O \
-p -R -s -k -P -c -D -W -l -E --debuglevel \
--log-basename --workgroup' -- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbclient smbclient
_smbget()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
-o|-f|--outputfile|--rcfile)
2009-10-04 19:42:50 +02:00
_filedir
return 0;
;;
-d|--debuglevel)
_samba_debuglevel
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-a --guest -r --resume -R --recursive -u \
--username -p --password -w --workgroup -n --nonprompt -d \
--debuglevel -D --dots -P --keep-permissions -o --outputfile -f \
--rcfile -q --quiet -v --verbose -b --blocksize -? --help --usage' \
-- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbget smbget
_smbcacls()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
-s)
_filedir
return 0;
;;
-l|--log-basename)
_filedir -d
return 0;
;;
-d|--debuglevel)
_samba_debuglevel
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-a -M -D -S -U -C -G --numeric -t \
-h --help -V -s -d --debuglevel -l --log-basename' -- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbcacls smbcacls
_smbcquotas()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
-s|-A|--authentication-file)
_filedir
return 0;
;;
-l|--log-basename)
_filedir -d
return 0;
;;
-d|--debuglevel)
_samba_debuglevel
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-u -L -F -S -n -t -v -h --help -V \
-s --debuglevel --log-basename -N -k \
--authentication-file --user' -- "$cur" ) )
2009-10-04 19:42:50 +02:00
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbcquotas smbcquotas
_smbpasswd()
{
local cur prev words cword
_init_completion || return
2009-10-04 19:42:50 +02:00
case $prev in
-r)
_samba_hosts
return 0;
;;
-R)
_samba_resolve_order
return 0;
;;
-c)
_filedir
return 0;
;;
-D)
_samba_debuglevel
return 0
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-a -c -x -d -e -D -n -r -R -m -U -h \
-s -w -W -i -L' -- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbpasswd smbpasswd
_smbtar()
{
local cur prev words cword
_init_completion || return
2009-10-04 19:42:50 +02:00
case $prev in
-r|-t)
2009-10-04 19:42:50 +02:00
_filedir tar
return 0;
;;
-s)
_samba_hosts
return 0;
;;
-l)
_samba_debuglevel
return 0
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-r -i -a -v -s -p -x -X -N -b -d -l -u -t' \
-- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbtar smbtar
_smbtree()
{
local cur prev words cword
_init_completion -n = || return
2009-10-04 19:42:50 +02:00
local split=false
2009-10-04 19:42:50 +02:00
_split_longopt && split=true
case $prev in
-s|-A|--authentication-file)
_filedir
return 0;
;;
-l|--log-basename)
_filedir -d
return 0;
;;
-d|--debuglevel)
_samba_debuglevel
return 0
;;
esac
$split && return 0
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-b -D -S -V -s -d --debuglevel -l \
--log-basename -N -k -A --authentication-file -U --user\
-h --help' -- "$cur" ) )
fi
2011-04-04 22:14:39 +03:00
} &&
2009-01-19 23:10:47 +01:00
complete -F _smbtree smbtree
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh