/usr/share/bash-completion/completions/lpass is in lastpass-cli 1.0.0-1.2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | __lpass_complete_name()
{
local cur=$1
local matches
# matches on full path
matches=$(lpass ls | egrep "^$cur" | awk '{print $1}')
# matches on leaves
matches+=$(lpass ls | egrep "/$cur" | sed -e "s/ \[id.*//g" | \
awk -F '/' '{print $NF}')
local IFS=$'\n'
COMPREPLY=($(compgen -W "$matches" "$cur"))
if [[ ! -z $COMPREPLY ]]; then
COMPREPLY=($(printf "%q\n" "${COMPREPLY[@]}"))
fi
}
__lpass_complete_group()
{
local cur=$1
local matches
matches=$(lpass ls | egrep "^$cur.*/" | awk -F '/' '{print $1}')
local IFS=$'\n'
COMPREPLY=($(compgen -W "$matches" "$cur"))
if [[ ! -z $COMPREPLY ]]; then
COMPREPLY=($(printf "%q\n" "${COMPREPLY[@]}"))
fi
}
__lpass_complete_opt()
{
local cmd=$1
local cur=$2
opts=""
case "$cmd" in
login)
opts="--trust --plaintext-key --force --color"
;;
logout)
opts="--force --color"
;;
show)
opts="--sync --clip --expand-multi --all --username --password --url --notes --field --id --name --basic-regexp --fixed-strings --color"
;;
ls)
opts="--sync --long --color"
;;
mv|duplicate|rm|export)
opts="--sync --color"
;;
edit)
opts="--sync --non-interactive --name --username --password --url --notes --field --color"
;;
generate)
opts="--sync --clip --username --url --no-symbols --color"
;;
share)
opts="--read_only --hidden --admin"
esac
COMPREPLY=($(compgen -W "$opts" -- $cur))
}
_lpass()
{
local cur="${COMP_WORDS[COMP_CWORD]}"
local cmd="${COMP_WORDS[1]}"
local subcmd="${COMP_WORDS[2]}"
local optind=1
for i in `seq 2 $COMP_CWORD`; do
if [[ ${COMP_WORDS[COMP_CWORD]} != "-*" ]]; then
optind=i
break
fi
done
local all_cmds="
login logout passwd show ls mv add edit generate
duplicate rm sync export share
"
local share_cmds="
userls useradd usermod userdel create rm
"
# include aliases (although we can't really do much with them)
for a in ~/.lpass/alias.*; do
all_cmds="$all_cmds ${a#*alias.}"
done
# subcommands
if [[ $COMP_CWORD -eq 1 ]]; then
COMPREPLY=($(compgen -W "$all_cmds" $cur))
return
# share subcommands
elif [[ $COMP_CWORD -eq 2 && $cmd == "share" ]]; then
COMPREPLY=($(compgen -W "$share_cmds" $cur))
return
fi
COMPREPLY=()
case "$cur" in
-*)
__lpass_complete_opt $cmd $cur
return
;;
esac
case "$cmd" in
show|rm|edit|duplicate|generate)
__lpass_complete_name $cur
;;
mv)
if [[ $COMP_CWORD -eq $optind ]]; then
__lpass_complete_name $cur
else
__lpass_complete_group $cur
fi
;;
ls|add)
__lpass_complete_group $cur
;;
share)
case "$subcmd" in
userls|useradd|usermod|userdel|rm)
if [[ $cur != "Shared-*" ]]; then
cur="Shared-$cur"
fi
__lpass_complete_group $cur
;;
create)
;;
esac
;;
*)
;;
esac
}
complete -o default -F _lpass lpass
|