mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-24 10:48:35 +02:00
10 lines
170 B
Bash
Executable file
10 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd ~
|
|
ssh-add -l > /dev/null || ssh-add $(
|
|
sed -n 's/^ *IdentityFile ~\/\([^ ]*\).*/\1/p' ~/.ssh/config \
|
|
| sort \
|
|
| uniq
|
|
)
|
|
|
|
ssh-add -l
|