| Next | Trivial Utilities | 19 |
Here's my plover command:
#!/bin/sh
KEY_ID='20:3f:df:58:06:ee:56:8e:56:e6:00:bd:0f:3c:ed:c6'
KEY_FILE="$HOME/.ssh/id_dsa"
until ssh-add -l | grep -s $KEY_ID ; do
ssh-add $KEY_FILE
done
exec ssh -AX plover.com
This checks to see if my ssh key is cached
If not, it caches it and then runs ssh
| Next | Menu | ![]() |
Copyright © 2012 M. J. Dominus |