27 lines
504 B
Plaintext
Raw Normal View History

2009-05-17 22:04:05 +02:00
# bash completion for ncftp
have ncftp &&
_ncftp()
{
2009-10-04 19:42:50 +02:00
local cur
2009-05-17 22:04:05 +02:00
2009-10-04 19:42:50 +02:00
COMPREPLY=()
cur=`_get_cword`
2009-05-17 22:04:05 +02:00
if [[ $COMP_CWORD -eq 1 && -f ~/.ncftp/bookmarks ]]; then
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -W '$( sed -ne "s/^\([^,]\{1,\}\),.*$/\1/p" \
~/.ncftp/bookmarks )' -- "$cur" ) )
fi
2009-05-17 22:04:05 +02:00
2009-10-04 19:42:50 +02:00
return 0
2009-05-17 22:04:05 +02:00
} &&
complete -F _ncftp -o default ncftp
# 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