view completion/_ssh-add @ 108:c228c63f1ba9

Automated merge with https://localhost/hg/zsh-env
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sat, 12 Nov 2016 02:52:17 +0100
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 "$@"