mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 04:14:58 +00:00
4 lines
89 B
Bash
4 lines
89 B
Bash
|
#!/bin/bash
|
||
|
# Add a SSH identity if nothing were found
|
||
|
ssh-add -l > /dev/null || ssh-add
|