public
Description: Some utility scripts (the stuff I keep in ~/bin)
Clone URL: git://github.com/foca/utility_scripts.git
Search Repo:
100755 9 lines (6 sloc) 0.128 kb
1
2
3
4
5
6
7
8
9
#!/bin/bash
 
real_ssh=/opt/local/bin/ssh
 
if [[ $(ssh-add -L | cut -d\ -f1) != "ssh-rsa" ]]; then
ssh-add
fi
 
$real_ssh $@