mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-24 18:58:33 +02:00
11 lines
144 B
Text
11 lines
144 B
Text
|
#!/bin/sh
|
||
|
|
||
|
cd ~
|
||
|
ssh-add $(
|
||
|
sed -n 's/^ *IdentityFile ~\/\([^ ]*\).*/\1/p' ~/.ssh/config \
|
||
|
| sort \
|
||
|
| uniq
|
||
|
)
|
||
|
|
||
|
ssh-add -l
|