mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-01 04:26:31 +00:00
15 lines
315 B
Fish
15 lines
315 B
Fish
# Adds all private keys to ssh agent
|
|
|
|
# Adds a key to agent if it hasn't been added yet
|
|
function __maybe_ssh_add
|
|
for key in $argv
|
|
if grep -q 'PRIVATE KEY' $key
|
|
ssh-add -l | grep -q "$key" ;or ssh-add $key
|
|
end
|
|
end
|
|
end
|
|
|
|
function ssh-add-all
|
|
__maybe_ssh_add $HOME/.ssh/id_*
|
|
end
|