Posts tagged as:

bash

SSH Wrapper Script

November 30, 2008

Ok — this is my first script that I’m posting here. Its a VERY simple ssh wrapper script that you can place in your path, preferably in ~/bin
– start –
#!/bin/bash
SSH=”/usr/bin/ssh”
case “$*” in
*’@’*)     $SSH $* ;;
*’ -l’*)     $SSH $* ;;
*)         $SSH -l root $* ;;
esac
– end [...]

{ 0 comments }

I’m back !

October 3, 2008

So, since I’ve had so much free time recently, I’ve been doing a lot of up keep on the tech side of my life. I built a new file server, update my web server, setup graphs and remote syslog for my network, finally bought a new AP, and most recently I traded in my Tilt [...]

{ 0 comments }