2019-03-18 15:35:02 +00:00
_ffsend( ) {
local i cur prev opts cmds
COMPREPLY = ( )
cur = " ${ COMP_WORDS [COMP_CWORD] } "
prev = " ${ COMP_WORDS [COMP_CWORD-1] } "
cmd = ""
opts = ""
for i in ${ COMP_WORDS [@] }
do
case " ${ i } " in
ffsend)
cmd = "ffsend"
; ;
complete )
cmd += "__complete"
; ;
completion)
cmd += "__completion"
; ;
completions)
cmd += "__completions"
; ;
d)
cmd += "__d"
; ;
dbg)
cmd += "__dbg"
; ;
debug)
cmd += "__debug"
; ;
del)
cmd += "__del"
; ;
delete)
cmd += "__delete"
; ;
down)
cmd += "__down"
; ;
download)
cmd += "__download"
; ;
e)
cmd += "__e"
; ;
exist)
cmd += "__exist"
; ;
exists)
cmd += "__exists"
; ;
gen)
cmd += "__gen"
; ;
generate)
cmd += "__generate"
; ;
h)
cmd += "__h"
; ;
help )
cmd += "__help"
; ;
history )
cmd += "__history"
; ;
i)
cmd += "__i"
; ;
info)
cmd += "__info"
; ;
information)
cmd += "__information"
; ;
ls)
cmd += "__ls"
; ;
p)
cmd += "__p"
; ;
param)
cmd += "__param"
; ;
parameter)
cmd += "__parameter"
; ;
parameters)
cmd += "__parameters"
; ;
params)
cmd += "__params"
; ;
pass)
cmd += "__pass"
; ;
password)
cmd += "__password"
; ;
2019-08-28 17:39:22 +00:00
rm)
cmd += "__rm"
; ;
2019-03-18 15:35:02 +00:00
u)
cmd += "__u"
; ;
up)
cmd += "__up"
; ;
upload)
cmd += "__upload"
; ;
v)
cmd += "__v"
; ;
ver)
cmd += "__ver"
; ;
version)
cmd += "__version"
; ;
*)
; ;
esac
done
case " ${ cmd } " in
ffsend)
2019-08-28 17:39:22 +00:00
opts = " -f -I -y -q -v -i -h -V -t -T -A -H --force --no-interact --yes --quiet --verbose --incognito --help --version --timeout --transfer-timeout --api --basic-auth --history debug delete download exists generate info parameters password upload version history help dbg del rm d down e exist gen i information params param parameter pass p u up ver v h ls"
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 1 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__d)
2019-08-28 17:39:22 +00:00
opts = " -e -h -V -f -I -y -q -v -i -p -o -t -T -A -H --extract --help --version --force --no-interact --yes --quiet --verbose --incognito --password --output --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__dbg)
2019-08-28 17:39:22 +00:00
opts = " -V -f -I -y -q -v -i -h -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --host --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__debug)
2019-08-28 17:39:22 +00:00
opts = " -V -f -I -y -q -v -i -h -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --host --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__del)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__delete)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__down)
2019-08-28 17:39:22 +00:00
opts = " -e -h -V -f -I -y -q -v -i -p -o -t -T -A -H --extract --help --version --force --no-interact --yes --quiet --verbose --incognito --password --output --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__download)
2019-08-28 17:39:22 +00:00
opts = " -e -h -V -f -I -y -q -v -i -p -o -t -T -A -H --extract --help --version --force --no-interact --yes --quiet --verbose --incognito --password --output --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__e)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__exist)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__exists)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__gen)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history completions help completion complete"
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__generate)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history completions help completion complete"
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__generate__complete)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --output --timeout --transfer-timeout --api --basic-auth --history <SHELL>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 3 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__generate__completion)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --output --timeout --transfer-timeout --api --basic-auth --history <SHELL>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 3 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__generate__completions)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --output --timeout --transfer-timeout --api --basic-auth --history <SHELL>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 3 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--output)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__generate__help)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 3 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__h)
2019-08-28 17:39:22 +00:00
opts = " -C -h -V -f -I -y -q -v -i -R -t -T -A -H --clear --help --version --force --no-interact --yes --quiet --verbose --incognito --rm --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
2019-08-28 17:39:22 +00:00
--rm)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-R)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__help)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__history)
2019-08-28 17:39:22 +00:00
opts = " -C -h -V -f -I -y -q -v -i -R -t -T -A -H --clear --help --version --force --no-interact --yes --quiet --verbose --incognito --rm --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
2019-08-28 17:39:22 +00:00
--rm)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-R)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__i)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -p -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --password --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__info)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -p -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --password --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__information)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -p -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --password --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__ls)
2019-08-28 17:39:22 +00:00
opts = " -C -h -V -f -I -y -q -v -i -R -t -T -A -H --clear --help --version --force --no-interact --yes --quiet --verbose --incognito --rm --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
2019-08-28 17:39:22 +00:00
--rm)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-R)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__p)
2019-08-28 17:39:22 +00:00
opts = " -P -h -V -f -I -y -q -v -i -p -o -t -T -A -H --gen-passphrase --help --version --force --no-interact --yes --quiet --verbose --incognito --password --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__param)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -d -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --download-limit --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__parameter)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -d -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --download-limit --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__parameters)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -d -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --download-limit --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__params)
2019-08-28 17:39:22 +00:00
opts = " -h -V -f -I -y -q -v -i -o -d -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --download-limit --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__pass)
2019-08-28 17:39:22 +00:00
opts = " -P -h -V -f -I -y -q -v -i -p -o -t -T -A -H --gen-passphrase --help --version --force --no-interact --yes --quiet --verbose --incognito --password --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__password)
2019-08-28 17:39:22 +00:00
opts = " -P -h -V -f -I -y -q -v -i -p -o -t -T -A -H --gen-passphrase --help --version --force --no-interact --yes --quiet --verbose --incognito --password --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--owner)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-o)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
return 0
; ;
ffsend__rm)
opts = " -h -V -f -I -y -q -v -i -o -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --owner --timeout --transfer-timeout --api --basic-auth --history <URL> "
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
return 0
fi
case " ${ prev } " in
--owner)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-o)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--timeout)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-t)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--transfer-timeout)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-T)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--api)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-A)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--history)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-H)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__u)
2020-01-10 16:13:36 +00:00
opts = " -P -o -D -a -c -C -S -Q -V -f -I -y -q -v -i -p -d -e -h -n -t -T -A -H --gen-passphrase --open --delete --archive --copy --copy-cmd --shorten --qrcode --help --version --force --no-interact --yes --quiet --verbose --incognito --password --download-limit --expiry-time --host --name --timeout --transfer-timeout --api --basic-auth --history <FILE>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
2019-12-07 14:32:32 +00:00
--expiry-time)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-e)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--name)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-n)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__up)
2020-01-10 16:13:36 +00:00
opts = " -P -o -D -a -c -C -S -Q -V -f -I -y -q -v -i -p -d -e -h -n -t -T -A -H --gen-passphrase --open --delete --archive --copy --copy-cmd --shorten --qrcode --help --version --force --no-interact --yes --quiet --verbose --incognito --password --download-limit --expiry-time --host --name --timeout --transfer-timeout --api --basic-auth --history <FILE>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
2019-12-07 14:32:32 +00:00
--expiry-time)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-e)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--name)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-n)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__upload)
2020-01-10 16:13:36 +00:00
opts = " -P -o -D -a -c -C -S -Q -V -f -I -y -q -v -i -p -d -e -h -n -t -T -A -H --gen-passphrase --open --delete --archive --copy --copy-cmd --shorten --qrcode --help --version --force --no-interact --yes --quiet --verbose --incognito --password --download-limit --expiry-time --host --name --timeout --transfer-timeout --api --basic-auth --history <FILE>... "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--password)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-p)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--download-limit)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-d)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
2019-12-07 14:32:32 +00:00
--expiry-time)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
-e)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
2019-03-18 15:35:02 +00:00
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--name)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-n)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__v)
2019-08-28 17:39:22 +00:00
opts = " -V -f -I -y -q -v -i -h -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --host --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__ver)
2019-08-28 17:39:22 +00:00
opts = " -V -f -I -y -q -v -i -h -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --host --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
ffsend__version)
2019-08-28 17:39:22 +00:00
opts = " -V -f -I -y -q -v -i -h -t -T -A -H --help --version --force --no-interact --yes --quiet --verbose --incognito --host --timeout --transfer-timeout --api --basic-auth --history "
2019-03-18 15:35:02 +00:00
if [ [ ${ cur } = = -* || ${ COMP_CWORD } -eq 2 ] ] ; then
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
fi
case " ${ prev } " in
--host)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-h)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-t)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--transfer-timeout)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-T)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--api)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-A)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
return 0
; ;
--basic-auth)
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
--history)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
-H)
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -f " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
*)
COMPREPLY = ( )
; ;
esac
2019-08-28 17:39:22 +00:00
COMPREPLY = ( $( compgen -W " ${ opts } " -- " ${ cur } " ) )
2019-03-18 15:35:02 +00:00
return 0
; ;
esac
}
complete -F _ffsend -o bashdefault -o default ffsend