mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
14 lines
306 B
Bash
14 lines
306 B
Bash
# lftpget(1) completion -*- shell-script -*-
|
|
|
|
_lftpget()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $(compgen -W '-c -d -v' -- "$cur") )
|
|
fi
|
|
} &&
|
|
complete -F _lftpget lftpget
|
|
|
|
# ex: filetype=sh
|