Skip to content

Instantly share code, notes, and snippets.

@dirkakrid
Forked from filipenf/bash-functions.sh
Created March 27, 2017 08:46
Show Gist options
  • Save dirkakrid/3080503e13dd995aae27e08d60edeb2d to your computer and use it in GitHub Desktop.
Save dirkakrid/3080503e13dd995aae27e08d60edeb2d to your computer and use it in GitHub Desktop.
function retry-ssh() {
ssh $@
while [ $? -ne 0 ]; do
sleep 3;
ssh $@;
done
}
function ansiblify() {
echo $1 | tr '.-' '_'
}
function cleanBarCode {
echo $1 | tr -d '. '
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment