Today’s IT landscape if full of software defined marketecture, and lore of a dystopian future full of network engineers that do nothing but write code. But in reality, there are plenty of actual reasons you should be learning programming, or at least some basic scripting. For many network engineers programming is not new, we have […]
SSH Wrapper Script
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 #!/bin/bash SSH=”/usr/bin/ssh” case “$*” in *’@’*) $SSH $* ;; *’ -l’*) $SSH $* ;; *) $SSH -l root $* ;; esac What this […]