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