Mercurial > hg > zsh-env
view completion/_ssh-add @ 119:b81b0cd81f63
add a git alias for handling submodules
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 18 May 2017 07:41:08 +0200 |
parents | a081e7a3977d |
children |
line wrap: on
line source
#compdef ssh-add _ssh-add() { local -a keys for key in $HOME/.ssh/*; do # only accept files that do not end in .pub if [[ ${key#*.pub} == "$key" ]]; then # exclude files that are not ssh keys if [[ ${key#*/config} == "$key" && ${key#*/known_hosts} == "$key" ]]; then keys+=($key) fi fi done compadd "$@" $keys } _ssh-add "$@"