This file contains hidden or 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 | |
# Setup default values for variables | |
VERSION="3.4.0" | |
CLUSTER=false | |
SERVICE=false | |
TASK_DEFINITION=false | |
MAX_DEFINITIONS=0 | |
AWS_ASSUME_ROLE=false | |
IMAGE=false |
This file contains hidden or 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 | |
function help { # Print help text | |
echo "Available commands:" | |
grep '^function' "${BASH_SOURCE[0]}" | sed -e 's/function / /' -e 's/{ //' | column -t -s\# | |
} |
OlderNewer