This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# usage mimics aws execution to replace just the command, not args | |
function usage() { | |
echo "Usage: $0 --region eu-west-2 eks get-token --cluster-name prod" | |
} | |
if [ -z "$1" ]; then | |
usage | |
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
CACHE_FILE=${HOME}/.kube/cache/aws-${AWS_PROFILE}.cache | |
MAXTIME=800 | |
if [ -f $CACHE_FILE ]; then | |
TS_DB=$(stat -t "%s" ${CACHE_FILE} | cut -d' ' -f10 | tr -d '"') | |
AGE=$(( `date +%s` - $TS_DB )) | |
if [[ $AGE -le $MAXTIME ]]; then | |
cat ${CACHE_FILE} | |
else | |
aws "$@" | tee $CACHE_FILE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# | |
# Git pre-commit hook that blocks commits for files that contain swear words. | |
# | |
# Created by Dave Hall - http://davehall.com.au | |
# Distributed under the terms of the WTFPL - http://www.wtfpl.net/ | |
# | |
# Please don't use this fucking script, it is shit! | |
# |