view completion/_ssh-add @ 170:95e349996727

Add a script for setting up the shell environment on a naked home. Use a global .hgrc that has a hook for local includes per machine.
author Dirk Olmes <dirk.olmes@codedo.de>
date Sat, 04 Apr 2020 03:53:18 +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 "$@"