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 | |
# | |
# TODO: allow for region to be added | |
# set EB Application Name and Limit | |
ebAppName=${@:2} | |
ebAppLimit=${1:-"5"} | |
if [ "$#" -lt 1 ]; then |
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
cat $(find PATH -type f -name 'FILENAME' -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" ") |