public
Fork of foca/utility_scripts
Description: Some utility scripts (the stuff I keep in ~/bin)
Clone URL: git://github.com/sabman/utility_scripts.git
Search Repo:
foca (author)
Sun Mar 23 04:55:23 -0700 2008
commit  4f5b41a04090f2ee02f12acb9e719a07e88740f8
tree    e7f8c91766c27937066c3d622cdd244fddc2f1b2
parent  af63fa36c52bb32dc4dbd581edcd7a8f8c48e048
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 $@